// javascript menu

$(document).ready(function() {
	//JQ 1.2.6
	$('.teaser_formation .soustitre_gris1').each(function(){

		var hgth =  -( ($(this).parent().outerHeight()/2)-0)+"px";
		$(this).next('.bloc_roll').css('top', hgth);
	})
	
	$('ul.contenu > li').hover(function() {
		$(this).children('div').show('slow');
    },function() {
    	$(this).children('div').hide('slow');
    });

	
});


