// This is a simple JQuery Script to create rollovers. Added 8/6/2009

jQuery(function() {
    jQuery('.rollover').hover(function() {
        var currentImg = jQuery(this).attr('src');
        jQuery(this).attr('src', jQuery(this).attr('hover'));
        jQuery(this).attr('hover', currentImg);
    }, function() {
        var currentImg = jQuery(this).attr('src');
        jQuery(this).attr('src', jQuery(this).attr('hover'));
        jQuery(this).attr('hover', currentImg);
    });
});
