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