﻿/// <reference path="..\..\jquery-1.3.2-vsdoc.js" />

$(function() {

    $('input.PagerFirst')
        .mouseenter(function() { $(this).attr('src', '/img/MoveFirst_2.gif'); })
        .mouseleave(function() { $(this).attr('src', '/img/MoveFirst.gif'); });
    $('input.PagerPrev')
        .mouseenter(function() { $(this).attr('src', '/img/MovePrevious_2.gif'); })
        .mouseleave(function() { $(this).attr('src', '/img/MovePrevious.gif'); });
    $('input.PagerNext')
        .mouseenter(function() { $(this).attr('src', '/img/MoveNext_2.gif'); })
        .mouseleave(function() { $(this).attr('src', '/img/MoveNext.gif'); });
    $('input.PagerLast')
        .mouseenter(function() { $(this).attr('src', '/img/MoveLast_2.gif'); })
        .mouseleave(function() { $(this).attr('src', '/img/MoveLast.gif'); });

});