﻿$(document).ready(function () {

    $("#buyer").click(function () {
        window.location = "Buyer.aspx";
    });

    $("#seller").click(function () {
        window.location = "Seller.aspx";
    });

    $("#knowledge").click(function () {
        window.location = "Knowledge.aspx";
    });

    $("#investors").click(function () {
        window.location = "Investors.aspx";
    });

    $("#mls").click(function () {
        window.location = "Mls.aspx";
    });

    $("#buyer").mouseenter(function () {
        $("#buyer").css("background", "url('sc/i/link_Pod_Sub_rv2.png') no-repeat transparent");
        $("#cart").animate({ left: 67 }, 125)
                    .animate({ left: 57 }, 125)
    });

    $("#buyer").mouseleave(function () {
        $("#buyer").css("background", "url('sc/i/link_Pod_Sub2.png') no-repeat transparent");
        $("#cart").animate({ left: 47 }, 125)
                    .animate({ left: 57 }, 125)
    });

    $("#seller").mouseenter(function () {
        $("#seller").css("background", "url('sc/i/link_Pod_Sub2.png') no-repeat transparent");
        $("#tag").animate({ left: 67 }, 125)
                    .animate({ left: 57 }, 125)
    });

    $("#seller").mouseleave(function () {
        $("#seller").css("background", "url('sc/i/link_Pod_Sub_rv2.png') no-repeat transparent");
        $("#tag").animate({ left: 47 }, 125)
                    .animate({ left: 57 }, 125)
    });

    $("#knowledge").mouseenter(function () {
        $("#knowledge").css("background", "url('sc/i/top_Link_Pod2.png') no-repeat transparent");
        $("#magnify").animate({ top: 10 }, 125)
                    .animate({ top: 28 }, 125)
    });

    $("#knowledge").mouseleave(function () {
        $("#knowledge").css("background", "url('sc/i/top_Link_Pod_rv2.png') no-repeat transparent");
        $("#magnify").animate({ top: 46 }, 125)
                    .animate({ top: 28 }, 125)
    });

    $("#btnCalculate").mouseenter(function () {
        $("#btnCalculate").css("background", "url('sc/i/btn_bg_rv.png') repeat-x scroll 0 0 transparent");
    });

    $("#btnCalculate").mouseleave(function () {
        $("#btnCalculate").css("background", "url('sc/i/btn_bg.png') repeat-x scroll 0 0 transparent");
    });

    $("#investors").mouseenter(function () {
        $("#inventors").css("background", "url('sc/i/link_Pod_Sub_rv2.png') no-repeat transparent");
        $("#money").animate({ left: 53 }, 125)
                    .animate({ left: 43 }, 125)
    });

    $("#investors").mouseleave(function () {
        $("#investors").css("background", "url('sc/i/link_Pod_Sub2.png') no-repeat transparent");
        $("#money").animate({ left: 33 }, 125)
                    .animate({ left: 43 }, 125)
    });

    $("#mls").mouseenter(function () {
        $("#mls").css("background", "url('sc/i/link_Pod_Sub2.png') no-repeat transparent");
        $("#search").animate({ left: 67 }, 125)
                    .animate({ left: 57 }, 125)
    });

    $("#mls").mouseleave(function () {
        $("#mls").css("background", "url('sc/i/link_Pod_Sub_rv2.png') no-repeat transparent");
        $("#search").animate({ left: 47 }, 125)
                    .animate({ left: 57 }, 125)
    });
});
