//Fader
jQuery(function($) {
var timer;
function fader(event)
{
	 $("#block_artiste_menu").css({
	 "top":"220px",
	 "opacity":"0"
	 }).animate({
	 "top":200,
	 "opacity":1},1000, "linear", null);
}

fader();
});
//Go to top
function goToByScroll(id){
     	$('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');}
		
//Round That Div
jQuery(function(){
$("#block_artiste_menu").corner("10px");})

