var fb = new Image();
fb.src = "/Content/CourtSports/Images/fb-logo-gr.png";
var fbhov = new Image();
fbhov.src = "/Content/CourtSports/Images/fb-logo-hov.png";
var yt = new Image();
yt.src = "/Content/CourtSports/Images/yt-logo-gr.png";
var ythov = new Image();
ythov.src = "/Content/CourtSports/Images/yt-logo-hov.png";

function showfb() {
    document.getElementById("image1").src = fb.src;
}

function hoverfb() {
    document.getElementById("image1").src = fbhov.src;
}

function showyt() {
    document.getElementById("image2").src = yt.src;
}

function hoveryt() {
    document.getElementById("image2").src = ythov.src;
}

//interior nav
$(function () {

    $("#currmo").click(function () {

        $(".currmoc").slideToggle("normal");
        return false;
    });


    $("#currmt").click(function () {

        $(".currmtc").slideToggle("normal");
        return false;
    });


    $("#currmth").click(function () {

        $(".currmthc").slideToggle("normal");
        return false;
    });

});
