$(function (){
	
	$('#s').attr('value', 'Въведи ключова дума');
	
	$('#login p input, #search fieldset .input, #sidebar #newsletter .field').focus(function (){
		var temp = $(this).attr('value');
		$(this).attr('value', '');
		
		$(this).blur(function (){
			
			if ( $(this).attr('value') == "" )
			{
				$(this).attr('value', temp);
			}
			
		});
	});
	
});