
$(document).ready(function(){		
	
	// clear search box on focus	
	$('#search-input').focus(function () {						 
			$('#search-input').attr('value','');
  });	
	
	// hide and show drop down menu
	 var navels = $('#nav > li');

	 for (var i=0; i<navels.length; i++) {		 
		 $(navels[i]).hover(
      function () {				
        $(this).children('ul').css('left', 'auto');
      }, 
      function () {
				$(this).children('ul').css('left', '-999em');
      }
    );
	}	
	
});



