jQuery(document).ready(
	function(){
		$("input[name='chDate[]']").click(function(){
			if($(this).is(':checked'))
			{
				$(this).parent().css('background', '#CC6666');
			}
			else
			{
				$(this).parent().css('background', '#FFFFFF');
			}
		});
		
		$(".trigger").hover(function() {
		//alert ($(this).position().top);
		$(this).next("div").animate({opacity: "show", top: $(this).position().top+15}, "slow");
	}, function() {
		$(this).next("div").animate({opacity: "hide", top: $(this).position().top+15}, "fast");
	});


});


$(document).ready(function(){

	
});


