// JavaScript Document
jQuery().ready( function () {
	$('.menuprim ul li').each ( function (i) {
		$(this).hover (
			function () { 
				$(this).addClass ('over');
			}, 
			function () { 
				$(this).removeClass ('over');
			}
		);
	});
});


