/**
* Donnons un p'tit coup de pouce au CSS avec du javascript
*/

function sdfdsfdf(){

	$(".left_menu > li > a").hover(
		function () {

		  $(this).next().slideToggle();
		}, 
      function () {
       
      }
	);


}

function menuCursor() {

	$("#left .left_menu li").hover(
	
		function () {
		
			$(this).addClass("hover");
		},
		function () {
		
			$(this).removeClass("hover");
		}
	);
}

function designLeft() {


	
	if($("#corps").height() < 580) {
	
		$("#corps").height(580);
	}
	
}

/**
* Mise en valeur d'une ligne sur deux
*/
function odd() {

	$(".listing tr:odd").css("background-color", "#F8F8F8");
}


$(menuCursor);
$(designLeft);
$(odd);
$(sdfdsfdf);
