/* code pour jQuery */
$(document).ready(function() { 

	$('#menu a').not('#menu .active a')
		.css( {backgroundPosition: "0 0", paddingTop: "9px" } )
		.mouseover(function(){
			$(this).stop().animate(
				{backgroundPosition:"(0 -5px)", paddingTop: "4px" }, 
				{duration:250})
			})
		.mouseout(function(){
			$(this).stop().animate(
				{backgroundPosition:"(0 0)", paddingTop: "9px" }, 
				{duration:250})
			});

	$('#main table tbody tr:odd').addClass('odd');

});

