﻿function mainmenu() {
    $(".dbm_nav ul").css({ display: "none" });
    $(".dbm_nav li").hover(function() {
        $("#topmenu_middle").css({ height: "400px" });
        $(this).find('ul:first:hidden').css({ visibility: "visible", display: "none", zIndex: "100" }).slideDown(400, null);
        $(this).find('ul li a').css({ display: "block", color: "cccccc", textDecoration: "none" });
        //$(this).find('ul li a:hover').css({ color: "ffffff", border: "none" });
    }, function() {
        $(this).find('ul:first').slideUp(200);
        $("#topmenu_middle").css({ height: "36px" });
    });
}

//$(document).ready(function() {
//    mainmenu();
//});

var hideCount = 0;
var showCount = 0;

$(document).ready(function() {
    $("ul.sf-menu").superfish({
        delay: 200,
        animation: { opacity: 'show', height: 'show' },
        speed: 'normal'
    });
}); 