		function mycarousel_initCallback(carousel){
			carousel.buttonNext.bind('click', function() {
				carousel.startAuto(0);
			});
			carousel.buttonPrev.bind('click', function() {
				carousel.startAuto(0);
			});
			carousel.clip.hover(function() {
				carousel.stopAuto();
			}, function() {
				carousel.startAuto();
			});
		};
function mycarousel_initCallback2(carousel) {
    jQuery('.jcarousel-control a').bind('click', function() {
        carousel.scroll(jQuery.jcarousel.intval(jQuery(this).attr('id')));
        return false;
    });

    jQuery('.jcarousel-scroll select').bind('change', function() {
        carousel.options.scroll = jQuery.jcarousel.intval(this.options[this.selectedIndex].value);
        return false;
    });

    jQuery('#mycarousel-next').bind('click', function() {
        carousel.next();
        return false;
    });

    jQuery('#mycarousel-prev').bind('click', function() {
        carousel.prev();
        return false;
    });
};		$(document).ready(function(){
			$('#m_0').addClass('select');
			$('div#biograhies div.bios:last').animate({marginRight: "0"});
			$('div.corner_infos').addClass('select');
			$('div.corner_infos').click(function(){
				$('div.description_video').slideToggle();
				$(this).toggleClass('select');
			});
			$('#last_videos a').hover(function(){
				$(this).animate({right: "15"},250);
			},function(){
				$(this).animate({right: "5"},100);
			});
			$('#news_bios a').hover(function(){
				$(this).animate({right: "15"},250);
			},function(){
				$(this).animate({right: "5"},100);
			});
			$('#unique_soiree a').hover(function(){
				$(this).animate({right: "15"},250);
			},function(){
				$(this).animate({right: "5"},100);
			});
			$('#multiple_soirees a').hover(function(){
				$(this).animate({right: "15"},250);
			},function(){
				$(this).animate({right: "5"},100);
			});

			jQuery('#last_videos').jcarousel({
				scroll: 3,
				wrap: 'both',
				vertical: true,
				animation: 1000,
				initCallback: mycarousel_initCallback
			});
			jQuery('#mixtape ul').jcarousel({
				scroll: 1,
				wrap: 'both',
				animation: 1000,
				initCallback: mycarousel_initCallback2
			});
		});
		$(window).load(function() {
			$('div.gradient').gradient({ from: '709BCF', to: '86ABD6' });
			$('div.gradient_pied').gradient({ from: '6B98CF', to: 'ffffff' });
			$('.gradient_2').gradient({ from: '447DC2', to: '86ABD6' });
			$('.gradient_3').gradient({ from: '447DC2', to: '86ABD6' });
			$('div.gradient_4').gradient({ from: '86ABD6', to: 'ffffff' });
			$('div.img_1').gradient({ from: 'ffffff', to: '6B98CF' });
			$('div.img_2').gradient({ from: '6B98CF', to: 'ffffff' });
			$('div#pied').gradient({ from: '6B98CF', to: 'ffffff' });
			$('.titre_section').gradient({ from: '447DC2', to: '86ABD6' });
			$('div.description_video').slideUp();
			$('div.corner_infos').removeClass('select');
			$('div.photo div.contenu').slideUp();
			$('div.photo div.contenu').animate({opacity: 0.9});
			$('div.photo').hover(function(){
				$(this).find('div.contenu').slideDown();
			},function(){
				$(this).find('div.contenu').slideUp();
			});
			$('.jcarousel-control').animate({opacity: '0.1'}).hide();
			$('ul#liste_mixtapes div.titre_section').hide();
			$('div#mixtape').hover(function(){
				$('.jcarousel-control').animate({opacity: '0.15'}).show(10);
				$('ul#liste_mixtapes div.titre_section').show(10);

			},function(){
				$('.jcarousel-control').animate({opacity: '0.15'}).hide(10);
				$('ul#liste_mixtapes div.titre_section').hide(10);
			});
			$('div#mixtapes div.jcarousel-control').hover(function(){
				$('.jcarousel-control').animate({opacity: '1'});
			},function(){
				$('div#mixtapes div.jcarousel-control').animate({opacity: '0.15'});
			});
		});
