function init_carousel()
{
	// Lancement du carousel
	$('#carousel').jcarousel({
		scroll: 3,
// 		easing: "easeOut",
		animation: 500
	});
	if( $.browser.msie && $.browser.version < 7 ) $("#carousel").width( $("#carousel").width() + 150 );

	// Version jQuery 1.3
	$('#carousel-container a img')
		.live('mouseover', function() { $(this).stop().animate( {opacity:  0.4} ); })
		.live('mouseout',  function() { $(this).stop().animate( {opacity:  1} ); })
		.css('opacity',1);
}





function init_scrollPane()
{
	$('#page-content .content').css({width:600,height:290}).jScrollPane();
	$('#page-content .content-nocarousel').css({width:600,height:390}).jScrollPane();
}





$(function() {
	// Initialisation menu
	$('#menu').droppy({speed: 200});
});

