/* ## JSRollover 0.0.1, i65c, under MIT */
function Rollover(){jQuery('img[src*="_off"]').each(function(){var img = jQuery(this);var src = img.attr('src');var _on = src.replace("_off.", "_on.");img.hover(function(){img.attr('src', _on);},function(){img.attr('src', src);});});};

