﻿/// <reference path="../js/jQuery.intellisense.js" />

$(document).ready(function () {
    Cufon.replace($("h1,h2,#menu .level1 a, #contour h4").not("#menu .level2 a"));
//    #menu li.level1:hover
//{
//     background: url(/images/menuArrow.png) no-repeat 10px 35px;
    //    }
    $(".contourSubmit").val("Skicka")
    $("#menu li.level1").hover(function () {
        if ($(this).find("ul").length > 0) {
            $(this).css("background", "url(/images/menuArrow.png) no-repeat 10px 35px")
        }
        $(this).find("ul").show();

    }, function () {
        $(this).find("ul").hide();
        $(this).css("background", "none")
    });

});
