﻿$(document).ready(function() {
    $("#ContentTitle").FontEffect({
        outline: false,
        shadow: true,
        shadowOffsetTop: 2,
        shadowOffsetLeft: 2,
        shadowColor: "#000",
        gradient: true,
        gradientColor: "#c4cf21",
        gradientPosition: 50,
        gradientLength: 50,
        gradientSteps: 20,
        hideText: true
    });
    $("#SubContentTitle").FontEffect({
        outline: false,
        shadow: true,
        shadowOffsetTop: 1,
        shadowOffsetLeft: 1,
        shadowColor: "#000",
        gradient: true,
        gradientColor: "#c4cf21",
        gradientPosition: 40,
        gradientLength: 80,
        gradientSteps: 20,
        hideText: true
    });
    $(".tabs ul li").bind("mouseenter", function() {
        //$(".SubMenu:visible").fadeOut("fast");
        $("> a", this).siblings(".SubMenu").fadeIn("fast");
    }).bind("mouseleave", function() {
        $(".SubMenu", this).fadeOut("fast")
    });
    //alert();
    $(".Containner").css("min-height", $(window).height() - 50 + "px");
});
