$(document).ready(function(){
	
$('#entete').cornerz({radius:8, borderWidth: 0, corners: "br bl"});
$('.bloc,.menuG,.titre').cornerz({radius:8, borderWidth: 0, corners: "br bl tl tr"});
$('.ps').cornerz({radius:20, borderWidth: 0, corners: "tl"});


	//When mouse rolls over
	$('.bloc').mouseover(function(){
		$(this).stop().animate({height:'250px'},{queue:false, duration:700, easing: 'easeOutCirc'})
	});
	
	//When mouse is removed
	$('.bloc').mouseout(function(){
		$(this).stop().animate({height:'200px'},{queue:false, duration:700, easing: 'easeOutCirc'})
	});	
	
	
});