$(document).ready(function() {
	$(".fecha").click(function(){
		a = $(this).attr("rel");
		b = $(this).text();
		$(this).text(a).attr("rel",b);
		return false;
	});
	$("#sombraheader").fadeTo(0,"0.10");
	$("#sidebar ul > li").prepend('<span style="font-size:15px;">&raquo;</span> ');
	$("#s").focus(function(){
		var s = $(this).attr("value");
		if(s=='Buscar...'){
			$(this).attr("value","");
		}
	});
	$("#s").blur(function(){
		var s = $(this).attr("value");
		if(s==''){
			$(this).attr("value","Buscar...");
		}
	});
	$(".responder > a").click(function(){
		rel = $(this).attr("rel");
		$("#comment").focus().prepend(rel);
		return false;
	});
	/*$(".wp-pagenavi").	fadeTo(0,'0.7').
						mouseenter(function(){
							$(this).stop().fadeTo(200,'1');
						}).
						mouseleave(function(){
							$(this).stop().fadeTo(500,'0.7');
						});*/
});
