// JavaScript Document


/*------ SCROLL TOP ------*/

$(document).ready(function(){
	
	$('body').prepend('<a href="#top" class="top_link"></a>');
	
	$('a[href^=#]').click(function() {
								   
		cible=$(this).attr('href');
		if($(cible).length>=1) {			
			hauteur=$(cible).offset().top;
		}
		else {
			hauteur=$("a[name="+cible.substr(1,cible.length-1)+"]").offset().top;
			
		}
		$('html,body').animate({scrollTop:hauteur},800);
		return false;
	});
			
});


$(window).scroll(function(){  

    posScroll = $(document).scrollTop();  
    if(posScroll >=300)  
        $('.top_link').fadeIn(800);  
    else  
        $('.top_link').fadeOut(800); 
		 
});  

/*------ END SCROLL TOP ------*/


