function calendar_get(date)
{
	$("#js_calendar").load("/calendar/"+date);
	$("#calendar_content").fadeOut();
	
}
function calendar_show()
{

	/*$("#calendar_content").load("/mundiapro_ci/event/"+date);
	*/
	$("#calendar_content").html('<strong>Le 16 juillet 2011</strong> <h3>Entretien de sélection</h3>');
	$("#calendar_content").fadeIn();
}




$(document).ready(function(){

	var dt = new Date();
	fyear = dt.getFullYear();
	month = dt.getMonth()+1;
	var current_month =fyear+'/'+month;	
	calendar_get(current_month)
	
	
	//
	$('.calendar_cell_content a').mouseover(function(){
		calendar_show();												 
	})
	

})

