
$(document).ready(function(){

	$("input.editbox_search").live('focus', function() {
		if ( $(this).val() == "Search" ) {
			$(this).val("");
		}
	});

	$("input.editbox_search").live('blur', function() {
		if ( $(this).val() == "" ) {
			$(this).val("Search");
		}
	});

	$(".menu-item").hover(
	  function () {

		$( "div#" + $(this).attr("child") ).show();
	  },
	  function () {


		$( "div#" + $(this).attr("child") ).hide();

	  }
	);

 });


