/*

Quick.Cms plugins JavaScript

*/



function markSelectedDate(wyb) {

	$("#calendar td:has(a)").each(function(){

		if ($('a', $(this)).text() == wyb.text()) {

			$(this).attr('class', 'selected');

		} else {

			$(this).attr('class', '');

		}

	});

	$("#calendar input[name=day]").attr('value', wyb.text());

	return false;	

}



$(document).ready(function(){

	$("#calendar td a").click(function(){

		return markSelectedDate($(this));

	});

	$("#calendar input[name=day]").attr('value', '');
	
	$("#esco").hover(function(){
		$("#esco_desc").show();
	}, function() {
		$("#esco_desc").hide();
	});

});
