		
$(document).ready(function() {
		
		// Preload all rollovers
		$(".roll img").each(function() {
			// Set the original src
			rollsrc = $(this).attr("src");
			rollON = rollsrc.replace(/.jpg$/ig,"_f2.jpg");
			$("<img>").attr("src", rollON);
		});
		
		// Navigation rollovers
		$("a.roll").mouseover(function(){
			imgsrc = $(this).children("img").attr("src");
			matches = imgsrc.match(/_f2/);
			
			// don't do the rollover if state is already ON
			if (!matches) {
			imgsrcON = imgsrc.replace(/.jpg$/ig,"_f2.jpg"); // strip off extension
			$(this).children("img").attr("src", imgsrcON);
			}
			
		});
		$("a.roll").mouseout(function(){
			$(this).children("img").attr("src", imgsrc);
		});
		
	
	});
