﻿
$(document).ready(function() {
    // menu slide down
    $(".horizontalMenu > ul > li").mouseenter(function() {
        $(this).children("ul").fadeIn("fast");
    });
    $(".horizontalMenu > ul > li").mouseleave(function() {
        $(this).children("ul").fadeOut("fast");
    })

    $(".horizontalMenu > ul > li > ul > li").mouseenter(function() {
        $(this).children("ul").fadeIn("fast");
    });
    $(".horizontalMenu > ul > li > ul > li").mouseleave(function() {
        $(this).children("ul").fadeOut("fast");
    })
    ;

    //menu style
    $(".horizontalMenu > ul > li:last").css({ 'background': 'none' });

    // tab
    $(".tabbody > div").eq(1).hide();
    $(".tabheader").children("span").click(function() {
        var x = $("span").index($(this));
        $(".tabheader").children("span").removeClass("active");
        $(this).addClass("active");
        $(".tabbody > .tabbodyC").hide();
        $(".tabbody > .tabbodyC").eq(x - 1).show();
    });
});
