
$(document).ready(
	function() {
		$('#calendrier2_listeMois li').hover(
			function () { // mouse hover
				$(this).css({cursor: 'pointer', border: '1px solid #4A7DF7'});
				$(this).children('a').css({color: '#4A7DF7'});
			}
			,
			function () { // mouse leave  
				$(this).css({cursor: 'auto', border: '0'});
				$(this).children('a').css({color: '#404040'});
			}
		);
		
		$('#calendrier2_listeMois li').click(
			function () {
				document.location.href = $(this).children('a').attr('href');
			}
		);
	}
);
