jQuery(function(){

	$("input#s").attr({ 
		title: "Buscar aquí..."
	});
	$("input#searchsubmit").attr({ 
		value: ""
	});
	$('input').example(function() {
		return $(this).attr('title');
	});
    $("#featured .featured-post a").hover
	     (
		function()
		{
			$(this).children(".featured-title").show();
		}
		,function()
		{
			$(this).children(".featured-title").hide();
		}
	);
		

});