jQuery(document).ready(function($) {
	var ziup = $('#head > form > input#s').val();
	$('#head > form > input#s').focus(function() {
		if($(this).val() == ziup){
			$(this).val('');
		}
	});
	$('#head > form > input#s').focusout(function() {
		if($(this).val() == ''){
			$(this).val(ziup);
		}
	});
	
});
