$(document).ready(function() {
	$("#news").easySlider({
		controlsShow: false,
		auto: true,
		continuous: true 
	});
	$("#slideshow-accueil").easySlider({
		controlsShow: false,
		auto: true,
		continuous: true,
		speed: 1500
	});
	
	// Footer : equal height
	$('#pied > div').equalHeight();
	
	// menu : coin arrondi
	$('#menu-wrapper .menu>ul:eq(0)>li:eq(0)>a')
		.css('border-top-left-radius', '10px')
		.css('-moz-border-radius-topleft', '10px')
		.css('-webkit-border-top-left-radius', '10px');
	$('#menu-wrapper .menu>ul:eq(0)>li:last>a').css('border-right', '1px solid #757477');
	// menu : flèches
	$('#menu-wrapper .menu>ul>li>a').each(function() {
		if($(this).next().length > 0) {
			$(this).append('<span>&nbsp;</span>');
		}
	});

});
