$(document).ready(function() {
$(".rollover img").each(function() {
rollsrc = $(this).attr("src");
rollON = rollsrc.replace(/.png$/ig,"_over.png");
$("<img>").attr("src", rollON);
});
$(".rollover a").mouseover(function(){
imgsrc = $(this).children("img").attr("src");
matches = imgsrc.match(/_over/);
if (!matches) {
imgsrcON = imgsrc.replace(/.png$/ig,"_over.png"); // strip off extension
$(this).children("img").attr("src", imgsrcON);
}		
});
$(".rollover a").mouseout(function(){
$(this).children("img").attr("src", imgsrc);
});	
});
