$(document).ready(function(){
	$('#s').click(function(){
		if($(this).val() == 'Escribe y luego pulsa enter') $(this).val('');
		else
		if($(this).val() != '' && $(this).val() != 'Escribe y luego pulsa enter') $(this).select();
	});
	$('#s').blur(function(){
		if($(this).val() == '') $(this).val('Escribe y luego pulsa enter');
	});
	$("img").lazyload({         
		placeholder : "../img/loading.gif",
		effect      : "fadeIn"
	});

});
