/*
 * Realisation : Konfiture
 */
function monSym(){
	//alert('Prochainement disponible');
	window.open('http://my-sym.com/','','top=100,left=200,resizable=no,width=720, height=780,scrollbars=yes');
}
jQuery(function($){
	$(document).ready(function(){
		$('#decor').hide().fadeIn(2000);
		$('.contentHome').hide().fadeIn(1500);
		
		$('.home #menugauche').hide().fadeIn(600);

		$("#menugauche .liTerm").hover(function(){
			$('html, body').stop().animate({scrollTop:0}, 'fast');
		});

		$('a[href=#top]').click(function() {
			$('html, body').animate({scrollTop:0}, 'slow');
			return false;
		});

	});

});
