jQuery(document).ready(function(){
});
function eventos(fecha){
	//alert(fecha);
	$.ajax({  
		type: "POST",
		url: "piecalendario.php",  
		data: "fech="+fecha, 
		success: function(data){ 
		$("#eventos").html(data);
		

	}});
	return false;
		
}


