//Animation des menus de navigation
// Script de marquage de la page courante sur le lien pointant vers elle
function relief()
{
  var pageurl = location.href;
  var dnl = document.getElementsByTagName("a");
  for(i = 0; i < dnl.length;i++)
  {
    var x = dnl.item(i);
    if(x.href == pageurl) 
    {
     // x.style.fontWeight = "bold";
      x.style.textDecoration = "underline";
	  x.style.color = "#999999";
	  x.style.margin = "0";
	  x.style.width = "200px";
    }
  }	
}
window.onload=relief; 


//______________________________________
$(document).ready(function(){

/*$("a").click(function(){
		$(this).blur();
	});*/

$("#menu_nav div").hover(
		function(){
			$(this).stop().animate({width: "120px"},500)
		},
		function(){
			$(this).stop().animate({width: "100px"},300)
		}
	);
});


