

$(document).ready(
	function() {
		$('.bloc2 ul li').hover(
			function () { // mouse hover
				$(this).css({cursor: 'pointer', backgroundImage: 'url("images/fond-bloc2-li-hover.jpg")'});
			}
			,
			function () { // mouse leave  
				$(this).css({cursor: 'auto', backgroundImage: 'url("images/fond-bloc2-li.jpg")'});
			}
		);
		
		$('.bloc2 ul li').click(
			function () {
				var id = $(this).attr('id').substr(12);
				document.location.href = $(this).find('a').attr('href');
			}
		);
		
	}
);

