﻿/// <reference path="jQuery/jquery-1.3.2-vsdoc2.js" />

$(function() {

    $(".PartnerBoxItemImage").hover(function() {
        var src = $(this).attr("src").toString().replace('Footer/Partner/', 'Footer/Partner/Active/');
        $(this).attr("src", src);
    }, function() {
        var src = $(this).attr("src").toString().replace('Footer/Partner/Active/', 'Footer/Partner/');
        $(this).attr("src", src);
    });

});
