﻿$(document).ready(function () {
    $(".RadTabStrip li").hover(
        function () {
            $(this).addClass("hover");
        }, function () {
            $(this).removeClass("hover");
        });

    $(".RadTabStrip li .rtsSelected").parent().addClass("active");
});

function clearCommentFieldLabels() {
    $(".FormSection input, .FormSection textarea").each(function () {
        if ($(this).val() != "") {
            $(this).prev("label").hide();
        }
    });
}

$(document).ready(function () {
    clearCommentFieldLabels();

    $(".FormSection input, .FormSection textarea").live("focus", function () {
        $(this).prev("label").hide();
    }).live("blur", function () {
        if ($(this).val() == '') {
            $(this).prev("label").show();
        }
    });

});


//Social links on portalpage
$(document).ready(function () {
    $(".social").parent().hover(
    function () {
        var src = $("img", this).attr("src").replace(".gif", "_hover.gif");
        $("img", this).attr("src", src);
    },
    function () {
        var src = $("img", this).attr("src").replace("_hover", "");
        $("img", this).attr("src", src);
    });
});
