﻿/// <reference path="MasterPages/Root.Master"/>
/// <reference path="http://ajax.aspnetcdn.com/ajax/4.0/1/WebForms.js"/>
/// <reference path="http://ajax.aspnetcdn.com/ajax/4.0/1/MicrosoftAjax.js"/>
/// <reference path="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.2.js"/>
Sys.require(Sys.scripts.jQuery, function () {
    $(".header-links .viewcart a img").mouseenter(function () {
        $(".header-links .viewcart a img").attr("src", "/App_Themes/Evergreen/images/viewcart-over.png");
    });
    $(".header-links .viewcart a img").mouseleave(function () {
        $(".header-links .viewcart a img").attr("src", "/App_Themes/Evergreen/images/viewcart.png");
    });

    $(".header-links .login a img").mouseenter(function () {
        $(".header-links .login a img").attr("src", "/App_Themes/Evergreen/images/login-over.png");
    });
    $(".header-links .login a img").mouseleave(function () {
        $(".header-links .login a img").attr("src", "/App_Themes/Evergreen/images/login.png");
    });

    $(".header-links .logout a img").mouseenter(function () {
        $(".header-links .logout a img").attr("src", "/App_Themes/Evergreen/images/logout-over.png");
    });
    $(".header-links .logout a img").mouseleave(function () {
        $(".header-links .logout a img").attr("src", "/App_Themes/Evergreen/images/logout.png");
    });
});
