﻿//$('.exp-nav-node-level1').mouseover(function () {
//    
//});

//$(document).ready(function () {
    //Menu Horizontal
//Si la souris passe sur le niveau 1 ...

//$('.s4-tn').click(function () {
//    alert("click");
//});

//$('.s4-tn').hover(function () {
//    alert("hover");
//    try {
//        //S'il y a au moins un niveau 2 ...
//        if ($(this).children('.exp-nav-node-level2').length != 0) {
//            //Pour chaque niveau 2 ...
//            $(this).children('.exp-nav-node-level2').each(function () {
//                //On affiche le titre des niveaux 2
//                $(this).children('.exp-nav-node-level2 a').css('display', 'block');
//                //S'il y a au moins un niveau 3 ...
//                if ($(this).children('.exp-nav-node-level3').length != 0) {
//                    //On supprime le lien href du niveau 2
//                    $(this).children('.exp-nav-node-level2 a').attr("href", "#");
//                    //Pour chaque niveau 3 ...
//                    $(this).children('.exp-nav-node-level3').each(function () {
//                        //On affiche le titre des niveaux 3
//                        $(this).children('.exp-nav-node-level3 a').css('display', 'block');
//                    });
//                }
//            });
//        }
//        else {
//            //Le niveau 1 devient un lien s'il n'y a pas de niveau 2
//            $(this).children('.exp-nav-node-level1 a').attr("href", $('.exp-nav-site-title a').attr("href"));
//        }
//    }
//    catch (e)
//            { }
//});
    
//});



$(document).ready(function () {
$('li.exp-nav-node-level1').each(function(index) {
	var pos = index + 1;
    $(this).addClass("exp-pos" + pos)
  });
 });
 
