jQuery(function($){ // ADD SEARCH BOX CLEAR/DEFAULT FUNCTIONALITY $('#head .t.box .box form input:first-child').focus(function(){ if(this.value == this.defaultValue){ this.value = ''; } }).blur(function(){ if(this.value == ''){ this.value = this.defaultValue; } }); // ADD NAV FADE IN/OUT EFFECT $('#head .b.box ul li ul').css('display','none'); $('#head .b.box ul li').mouseenter(function(){ $(this).children('ul').stop().fadeTo(200,0.95,function(){ $(this).children('ul').css('opacity',''); }); }).mouseleave(function(){ $(this).children('ul').stop().fadeOut(200).css('display','none'); }); });