jQuery(document).ready(function(){

    jQuery(document).pngFix();

    jQuery('div#nav-secondary ul').superfish({
        autoArrows:false
    });

    jQuery('input#query').focus(function(){
        if (this.value == this.defaultValue){ this.value = ''; }
    });

    jQuery('input#query').blur(function(){
        if(!this.value) { this.value = this.defaultValue; }
    });

    jQuery('#rotator').cycle()

});
