﻿$(document).ready(function() {

    $('.homeLearnMore').mouseover(function() {
        $('.homeLearnMoreImg').attr('src', '/images/learnmorehover.gif');
    })

    $('.homeLearnMore').mouseout(function() {
        $('.homeLearnMoreImg').attr('src', '/images/LearnMoreLinkOn.gif');
    })

    $('div#innerTickerContent marquee').marquee('pointer').mouseover(function() {
        $(this).trigger('stop');
    }).mouseout(function() {
        $(this).trigger('start');
    });
    
});
