$(document).ready(function(){
		 
	$('#menu li').hover(function(){

		$(this).attr('id',(Math.floor(Math.random()*500))+'TMPMENU');

		if($('#'+($(this).attr('id'))+' a').attr('class')!='active'){
		 
		$('#'+($(this).attr('id'))+' a').css({
					'margin-top':'0px',
					'padding-top':'0px',
					'opacity':'0.5',
					'background':'#000',
					'color':'#fff'
					});
		
			$('#'+($(this).attr('id'))+' a').animate({paddingTop:40,marginTop:-30,opacity:1,borderRadius:100},200);
		}
		
		
	},
	function(){
		if($('#'+($(this).attr('id'))+' a').attr('class')!='active'){
			$('#'+($(this).attr('id'))+' a').css({'background':'transparent','color':'#000'});
		}
	});
	
	
	$('#ctn').css('min-height',$('.contenu').height()+450 + 'px');
});

