$(document).ready(function() {

    /** ****************************************************
     *                  MAIN MENU
     */

    $("#headerMenu > li").hover(function() {
        $(this).addClass("hover")
    }, function() {
        $(this).removeClass("hover")
    })

    $("#headerMenu > li").click(function(event) {
        event.stopPropagation()
        url = $(this).children("a").attr("href")
        document.location = url
    })

    $("#headerMenu > li > a").click(function(event) {
        event.stopPropagation()
    })

    /** ****************************************************
     *                  LANGUAGE MENU
     */
    
    $("#langCurrent").bind("mouseover", function(e) {
        $("#langMenu").css('left', $("#langCurrent").position().left);
        $("#langMenu").css('top', $("#langCurrent").offset().top);
        $("#langMenu").show();
    });

    $("#langMenu").bind("mouseleave", function(e) {
        $(this).hide();
    });

})

