/**
P'tit coup de pouce au CSS
*/

function pageHeight(){

	if($("#contenu").height() < 400) {
	
		$("#contenu").height(400)
	}


	var height = ($("#conteneur").height()) + 10;

	$("#conteneur").height(height);
}

function menugauche(){

	$('.tohidden').hide();
	
	$("li.first").hover(
		function () {

		  	$(this).children('.tohidden').show();
		}, 
      function () {
       
       		$(this).children('.tohidden').hide('fast');
      }
	);	
	

}

$(menugauche);
$(pageHeight);