// JavaScript Document

$(function(){
    $("#site_mainNav li").hover(function(){
        var ol = $(this).children("ol");
        
        if (ol.is(":animated")) {
            ol.stop().css({"opacity": "1"}).fadeIn("fast");
        }
        else {
            ol.css("display", "none");
            ol.fadeIn("normal");
        }
    }, function(){
        var ol = $(this).children("ol");
        
        
        if (ol.is(":animated")) {
            ol.stop().css({"opacity": "1"}).fadeOut("fast");
        }
        
        else {
            ol.fadeOut("fast");
        }
    });
});
