$(document).ready(function(){
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over Informations
	$("#menuHorizInfo").mouseover(function(){
	$(this).stop().animate({ height: '261px', width: '450px' }, { queue: false, duration: 500, easing: 'easeInQuad' })
	});
	
	//When mouse rolls over Services
	$("#menuHorizService").mouseover(function(){
	$(this).stop().animate({ height: '341px', width: '450px' }, { queue: false, duration: 500, easing: 'easeInQuad' })
	});
	
	//When mouse rolls over Logiciels
	$("#menuHorizlogiciel").mouseover(function(){
	$(this).stop().animate({ height: '181px', width: '450px' }, { queue: false, duration: 500, easing: 'easeInQuad' })
	});
	
	//When mouse rolls over Forums
	$("#menuHorizForum").mouseover(function(){
	$(this).stop().animate({ height: '231px', width: '450px' }, { queue: false, duration: 500, easing: 'easeInQuad' })
	});
	//When mouse rolls over
	$("#menuHorizFormation").mouseover(function(){
	$(this).stop().animate({ height: '261px', width: '450px' }, { queue: false, duration: 500, easing: 'easeInQuad' })
	});
	
	//When mouse rolls over Formations
	$("#menuHorizMeservice").mouseover(function(){
	$(this).stop().animate({ height: '255px', width: '450px' }, { queue: false, duration: 500, easing: 'easeInQuad' })
	});
	
	//When mouse is removed Mes services
	$("li.menuNiv1").mouseout(function(){
	$(this).stop().animate({ height: '44px', width: '110px' }, { queue: false, duration: 500, easing: 'easeInQuad' })
	});
	$("li.menuNiv1Grand").mouseout(function() {
		$(this).stop().animate({ height: '44px', width: '130px' }, { queue: false, duration: 500, easing: 'easeInQuad' })
	});
	
});
