jQuery(function( $ ){

/* SEARCH */ 
$('.InputSearch').focus( function() {  if($(this).attr("value") == "Search") $(this).attr("value", ""); });
$('.InputSearch').blur(function() {  if($(this).attr("value") == "") $(this).attr("value", "Search"); });

/* NAVIGATION */
$('#Navigation UL LI').hover(
function(){ $(this).find('UL').stop().show(); },
function(){ $(this).find('UL').stop().hide(); }
);


});
