/* ######### Abre Fecha ######### */
$(".boxAbreFecha").each(function(i){
	var h = $(this).find("h3").height();
	var w = $(this).find("h3").width();
	var v = $(this).find("h3").text();
	if(jQuery.browser.msie)
		h = h - 10;
	var o = $('<a href="javascript:;" title="'+v+'"></a>').css({height: h+"px",width: w+"px"}).html(v);
	$(this).find(".lnk").append(o);
});