﻿/* help ie to show sub menus when the menu is hoovered */
/* also a little help for ie6... */
$(document).ready(function() {
    $("#nav>li").mouseover(function() {
        $(this).addClass("over");
    });

    $("#nav>li").mouseout(function() {
        $(this).removeClass("over");
    });

    if (!$("ul#nav > li").hasClass("on"))
       $("#dummy").attr("class", "on"); // ie 6 will through a peekaboo bug if .addClass(); is used here*/
});

