var menuJS_li = 0;


$(document).ready(
	function() {
		$('.sousmenu li').hover(
			function () { // mouse hover
				$(this).css({cursor: 'pointer', backgroundImage: 'url("../images/menu-li-hover.jpg")', backgroundRepeat: 'repeat-x', border: '1px solid #2d2d2d', height: '25px', lineHeight: '25px'});
			}
			,
			function () { // mouse leave  
				$(this).css({cursor: 'auto', backgroundImage: 'none', border: '0', height: '27px', lineHeight: '27px'});
			}
		);
		
		
		
		$('.sousmenu li').click(
			function () {
				document.location.href = $(this).children('a').attr('href');
			}
		);
	}
);
