$.elementReady('renta-calendario', function(){
    $(".mod-calendario table").hide();
	$(".mod-calendario table").eq(3).show();
	$(".mod-calendario h3").eq(3).addClass("marcado");
	
	$(".mod-calendario h3 a").click(function(){		
		$(".mod-calendario table").hide();
		if(!$(this).parent().hasClass("marcado")){
			$(".mod-calendario h3").removeClass("marcado");
			$(this).parent().next().show();
		}
		$(this).parent().toggleClass("marcado");
		return false;
	})
});
$(document).ready(function(){

	$("#combotemas").change(function () {
		location.href = $(this).attr("value");
	})

});
