$(document).ready(function() {

    var slideOut = false;
    
    if ($('#search-options input:checked, #search-options option:selected[value]').length > 0) {
        $('#search-options').css('margin-left', '310px');
        slideOut = true;
    }
    
    $('#more').click(function () {
    
        if (slideOut) {
            $('#more').val('More Options');
            $('#search-options').animate({
                marginLeft: -70
            }, 800, 'swing', function () {
                $('#search-options-container').width(320);
            });
            slideOut = false;
        } else {
            slideOut = true;
            $('#search-options').show();
            $('#more').val('Less Options');
            $('#search-options-container').width(690);
            $('#search-options').animate({
                marginLeft: 310
            }, 800, 'swing');
        }
    
    });

});
