$(document).ready(function(){
	// Your code here
	$('#header input[name="submit"]').each(function() {
		var base = $(this).val();
		$(this).attr('title',base);
	}).focus(function() {
		var base = $(this).attr('title');
		if ($(this).val() == base) $(this).val(''); 	
	}).blur(function() {
		var base = $(this).attr('title');
		if ($(this).val().length == 0) $(this).val(base); 	
	});
});
