$(function ()
{
    //Open login
    /*
    $(".login").click(function ()
    {
        $(".loginForm").toggle();
        return false;
    });


    //Reset user name
    var userNameDefault = "User Name";
    $(".inputName input").focus(function ()
    {
        if ($(this).attr("value") == userNameDefault) $(this).attr("value", "");
    });
    $(".inputName input").blur(function ()
    {
        if ($(this).attr("value") == "") $(this).attr("value", userNameDefault);
    });
    //Reset password
    $(".password input").focus(function ()
    {
        if ($(this).attr("value") == "") $(this).css({ backgroundImage: "url(../images/loginInput.png)" });
    });
    $(".password input").blur(function ()
    {
        if ($(this).attr("value") == "") $(this).css({ backgroundImage: "url(../images/loginPass.png)" });
    });

     */
    ///////////////////////////////////////
    //Equal Height Columns with jQuery
    function equalHeight(group)
    {
        tallest = 0;
        group.each(function ()
        {
            thisHeight = $(this).height();
            if (thisHeight > tallest)
            {
                tallest = thisHeight;
            }
        });
        group.height(tallest);
    }
    //equalHeight
    equalHeight($('.planPrice'));
    equalHeight($('.planPriceText'));
    equalHeight($('.planText'));

    //Zebra table
    $(function ()
    {
        $('.blueTbl tr:even').addClass('even');
        //$('table tr:odd').addClass('odd');
    });

    //Radio control toggle divs
    $(".requestType").click(function ()
    {
        $(".requestDetail:visible").hide();
        $("#Info" + this.value).fadeIn('slow');
    });

    //manageUrl
    $(".manageUrl").click(function ()
    {
        $(".manageUrl").removeClass("selected");
        $(".settings:visible").hide();
        $("#settings" + this.rel).fadeIn('slow');
        $(this).toggleClass("selected");
        return false;
    });
   
    //faq
    $(".faq dt").click(function ()
    {
        $(this).next().toggle("slow");
    });


});
