
 //Horizontal Sliding   >>> albums
$(document).ready(function(){  
 
	$('.boxgrid.slidedown').hover(function(){
					$(".cover", this).stop().animate({top:'130px'},{queue:false,duration:400});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:400});
				});
}); 

// slider campagnes promo
		$(document).ready(function(){	
			$(".home_campagne").easySlider({
				auto: true,
				continuous: true ,
				speed: 800,
				pause: 7000
	
			});
		});	
		
 // slider playlists		
$(document).ready(function(){	
	$("#home_playlist").easySlider({
		auto: false,
		continuous: true,
		speed: 800,
		numeric: true
	});
});	