$(document).ready(function(){
    if ($("ul.sf-menu")) {
        $("ul.sf-menu").superfish({ 
            autoArrows: false
        });
    }


    $(".depth0 li.mainmenu").hover(
        function(){
            $(this).addClass('sfHover');
        },
        function() {
            $(this).removeClass('sfHover');
        });

    if ($('#hpLayer').size()) {

        $("#pInnerContent").addClass('noPadding');
        $("#pOpacity").hide();
        swfobject.embedSWF("/flash/prehravac.swf", "hpLayer", "976", "488", "9.0.0", null, {}, {
            wmode: 'transparent',
            bgcolor: '#ffffff'
        });

    }

    $('#searchInput').each(function() {

        var default_value = this.value;
        $(this).focus(function(){

            if(this.value == default_value) {

                this.value = '';

            }
        });

        $(this).blur(function(){

            if(this.value == '') {

                this.value = default_value;
            }
        });

    });



});

