﻿$(document).ready(function() {
    /* Button hover states */
    $('#find-out-more').hover(
        function() {
            $(this).attr({ src: '/content/buttons/findoutmore/findoutmore-button-blue-hover.png' });
        },
        function() {
            $(this).attr({ src: '/content/buttons/findoutmore/findoutmore-button-blue.png' });
        }
    );

    // preload button images
    $.preloadImages("/content/buttons/findoutmore/findoutmore-button-blue-hover.png");
});