$(document).ready(function() {
	var t=$('#header_menu .block-search input[type="text"]');

//    alert(t.length);
    
	if (t) 
	{
        t.css('color', '#C0C0C0');
		t.val('SEARCH');
		t.focus( function() { t.val(''); t.css('color', '#000000'); } );
		t.blur( function() { if(! t.val().toString()){ t.val('SEARCH'); t.css('color','#C0C0C0'); } } );
	}
	$('form#search-block-form input#edit-submit').val('');
	//$('form#search-form input#edit-submit').val('');
});

