	$(document).ready(function(){
				/* $("#menuTitle ,#statsTitle ,#profilTitle").click(function(){  
					obj = this;
			//		$(obj).parent().css({"background":"url(http://www2.ac-nancy-metz.fr/qphtml/html/common/ajax_loader.gif) right top no-repeat"});
					
					$(this).parent().next().slideToggle('slow',function(){ 
					}); 
				});
				*/
			// 	$("#profilTitle").click();
				
				$("#objetsMenu li a").hover(function(){
					$(this).append('<div class="hovered"></div>');
					$(this).append('<div class="hovered2"></div>');
					$(this).append('<div class="hovered3"></div>');
					$(this).append('<div class="hovered4"></div>');
					// Haut
					$(this).find('div.hovered').css({'top':0,'left':0,'backgroundPosition':'left -66px','width':'0px','height':'0px','opacity':'0'});
					$(this).find('div.hovered2').css({'top':0,'right':0,'backgroundPosition':'right -66px','width':'0px','height':'0px','opacity':'0'});
					// Bas
					$(this).find('div.hovered3').css({'bottom':0,'left':0,'backgroundPosition':'left bottom','width':'0px','height':'0px','opacity':'0'});
					$(this).find('div.hovered4').css({'bottom':0,'right':0,'backgroundPosition':'right bottom','width':'0px','height':'0px','opacity':'0'});
					
					$(this).find('div.hovered').stop(true).animate({width:66,height:66,opacity:1},1000);
					$(this).find('div.hovered2').stop(true).animate({width:66,height:66,opacity:1},1000);
					$(this).find('div.hovered3').stop(true).animate({width:66,height:66,opacity:1},1000);
					$(this).find('div.hovered4').stop(true).animate({width:66,height:66,opacity:1},1000);
					
				},function(){
					
					$(this).find('div.hovered').stop(true).fadeOut('slow',function(){ $(this).remove(); });
					$(this).find('div.hovered2').stop(true).fadeOut('slow',function(){ $(this).remove(); });
					$(this).find('div.hovered3').stop(true).fadeOut('slow',function(){ $(this).remove(); });
					$(this).find('div.hovered4').stop(true).fadeOut('slow',function(){ $(this).remove(); });
				});
			
			animateM=false;
		});
		
							function switch_menu(nom)
							{
								var headID = document.getElementsByTagName("head")[0];  
								var cssNode = document.createElement('link');  
								   cssNode.type = 'text/css';  
								   cssNode.rel = 'stylesheet';  
								   cssNode.href = 'css_menu.php?setTheme='+nom;  
								   cssNode.media = 'screen';
								   headID.appendChild(cssNode);  
							}



