(function($){
	$(function(){
		if ($.browser.msie){
			$('ul li:has(ul)').hover(function(){ $(this).addClass('sfhover'); }, function(){ $(this).removeClass('sfhover'); });		  
		}
		$('#search .text').focus(function(){
			if (this.value == this.defaultValue){ this.value = ''; }
		}).blur(function(){
			if (this.value == ''){ this.value = this.defaultValue; }
		});
	});
})(jQuery);
