﻿$(document).ready(function () {

    // This is the simplified img hover script
    $('img[hvr]').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hvr'));
        $(this).attr('hvr', currentImg);
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hvr'));
        $(this).attr('hvr', currentImg);
    });
    
});

var flashvars = { xmlfile: "/!includes/xml/SlideShow.xml" };

swfobject.embedSWF("/!images/flash/SlideShow.swf", "Rotator", "385", "582", "9.0.0", "/!images/flash/expressInstall.swf", flashvars);