$(document).ready(function(){
	
	$('#container').fadeOut(0).fadeIn(2500);
	
	$('.icon_reseau')
		.mouseover(function(){
			$(this).stop(true,true).animate({
				top:"10px",
				opacity:1
			}, 350);
		})
		.mouseout(function(){
			$(this).stop(true,true).animate({
				top:"0px",
				opacity:0.3
			}, 200);
		});
	
	$('.cbzoom').colorbox();
	$("#cbzoom_infos-legales").colorbox({inline:true, href:"#infos-legales"});
	
	$('#player')
		.fadeOut(0).css({opacity:0.3}).fadeIn(4500)
		.mouseenter(function(){
			$(this).stop(true,true).animate({
				top:"10px",
				opacity:1
			}, 350);
		})
		.mouseleave(function(){
			$(this).stop(true,true).animate({
				top:"0px",
				opacity:0.3
			}, 200);
		});
});
