jQuery(document).ready(function() {

	change_carrousel('film');

	$('.content .main-bar .btn').hover(function(){
		$(this).addClass('on');
	},function(){
		$(this).removeClass('on');
	});

});

function mycarousel_initCallback(carousel) {
    jQuery('.carrousel .carrousel-middle .btn-right').bind('click', function() {
        carousel.next();
        return false;
    });

    jQuery('.carrousel .carrousel-middle .btn-left').bind('click', function() {
        carousel.prev();
        return false;
    });
};

function change_carrousel(type)
{
	$('#home_carousel').fadeOut('slow',function(){

		$('#home_carousel').html($('#contenu_carousel_'+type).html());
		$('#home_carousel').fadeIn('fast',function(){

			/*jQuery('.carrousel .carrousel-middle .btn-left').unbind('click');
			jQuery('.carrousel .carrousel-middle .btn-right').unbind('click');*/

			jQuery('#home_carousel').jcarousel({
				initCallback: mycarousel_initCallback,
				buttonNextHTML:null,
				buttonPrevHTML:null
			});

		});

	});

}
