
$(document).ready(function(){
    $("ul.sf-menu").superfish({
        autoArrows:  false,                           // disable generation of arrow mark-up
        animation:   {opacity:'0.92',height:'show'},
        speed:       'normal',
        dropShadows: true                            // disable drop shadows
    });
    $("#searchBox").focus(function() {
        if ($(this).val() == 'Vyhledávání') {

            $(this).attr("value","");
        }
    });
    $("#slider").easySlider({
        prevText: '',
        nextText: '',
        vertical: false,
        speed: 800,
        auto: true,
        pause: 4500,
        continuous: true
    });

    $("div#user-quick-button").click(function () {
        var display = $("div#user-quick-form").css("display");
        if (display == "block") {
            $("div#user-quick-form").hide("slow");
        } else {
            $("div#user-quick-form").show("slow");
        }
          
    });

    $('#widget').cycle({ 
        fx:    'fade', 
        speed:  2500,
        timeout:  5000 
    });

    $("#orderRegisteredCustomer").click(function () {
       $("div#formPassword").show("slow");    
    });
    
    $("#orderNewCustomer").click(function () {
       $("div#formPassword").hide("slow");    
    });
  
});

function fill(thisValue) {
    $('#searchBox').val(thisValue);
    setTimeout("$('#suggestions').fadeOut();", 600);
}

$(function() {
    $('.noAutoComplete').attr('autocomplete', 'off');
});

$(function() {
    $('#suggestionsList').css({opacity: 0.85});
});

