


jQuery(function()
{
	jQuery("#topimages img").each(function(){
	 rollsrc=jQuery(this).attr("src");
	 rollON=rollsrc.replace("OFF","ON");
	 newImg=new Image();
	 jQuery(newImg).attr("src",rollON)});
	jQuery("#topimages a").mouseover(
	 function(){imgsrc=jQuery(this).children("img").attr("src");if(typeof(imgsrc)!="undefined"){imgsrcON=imgsrc.replace("OFF","ON");
	 jQuery(this).children("img").attr("src",imgsrcON)}});
	jQuery("#topimages a").mouseout(function(){if(typeof(imgsrc)!="undefined"){
 jQuery(this).children("img").attr("src",imgsrc)}});
jQuery(".scroll").cycle({fx:"scrollHorz",speed:800,timeout:4000,next:"#next",prev:"#prev",pause:1});

}
);


