$(document).ready(function(){
	$('div#nav ul li a').mouseover(function(){
										   $(this).siblings('ul').show();
										   
										   $(this).parent().hover(function() {}, 
											function(){
												$(this).find("ul").hide(); //When the mouse hovers out of the subnav, move it back up
											});
										   });
	
	
	$('input.srch-txt').focus(function() {
									   if($(this).attr('value') == "Search")
									   {
										   $(this).attr('value', '');
									   }
									   });
	$('input.srch-txt').blur(function() {
									   if($(this).attr('value') == "")
									   {
										   $(this).attr('value', 'Search');
									   }
									   });
	
	
	

});

