$(document).ready(function() {
	$("[id$=txtBuscador]").attr("value", $("[id$=txtBuscador]").attr("title")).focus(function() { if ($(this).attr("value") == $(this).attr("title")) { $(this).attr("value", ""); } }).blur(function() { if ($.trim($(this).attr("value")) == "") { $(this).attr("value", $(this).attr("title")); } });
	
	$("#footer2 .social a").hover(function() { window.status="foo";  $(this).attr("title"); }, function() { window.status = $(this).attr("title"); } );
});


