﻿/// <reference path="../../../../Scripts/jquery-1.3.2.min-vsdoc.js" />

$(function() {
    $(".ButtonLinkText").hover(function() {
        $(this).addClass("ButtonLinkTextHover");
    }, function() {
        $(this).removeClass("ButtonLinkTextHover");
    });
});
