// jcalendar
function submitIt(valor, accion) { 
	$.post("inc/calendar.php", { ref: accion, date: valor }, function(data){
		//$("#jresp").fadeIn();
		$("#jresp").html(data); 
		$.prettyPhoto.open('#jresp');
	});
}

function printIt(valor, accion) { 
	$.post("inc/calendar.php", { ref: accion, date: valor }, function(data){
		$("#jresp div").html(data); 														  
		$(function(){
                $.jPrintArea('#jresp div');
            });
	});
}
