index=0;
index2=0;

function show(){		
	index++;
		
	if(index>=images.length)
		index=0;
		
	$(document.getElementById('center_image')).fadeOut("slow",function(){
		document.getElementById('cImage').src=images[index];
		document.getElementById('clink').href=link1[index];
		$(document.getElementById('center_image')).fadeIn("slow");
	});
	
	setTimeout("show()",fTime);
}
function show2(){	
	index2++;
	
	if(index2>=images2.length)
		index2=0;	
	
	$(document.getElementById('right_top_image')).fadeOut("slow",function(){
		document.getElementById('cImage2').src=images2[index2];
		document.getElementById('clink2').href=link2[index2];
		$(document.getElementById('right_top_image')).fadeIn("slow");
	});
	
	setTimeout("show2()",fTime2);
}