// JavaScript Document
var ImgIdx = 2;//To mark which image will be select next
	
	function PreloadImg(){
		jQuery.ImagePreload("images/002.png");
		jQuery.ImagePreload("images/003.png");
		jQuery.ImagePreload("images/004.png");
		jQuery.ImagePreload("images/005.png");
		jQuery.ImagePreload("images/006.png");
	}
	jQuery(document).ready(function($){ 
		PreloadImg();
		
		jQuery(".topimage").click(function($){
				jQuery(".topimage").ImageSwitch({Type:"FlyOut", 
											NewImage:"http://uwwa.chicappa.jp/uwwa/wp-content/themes/uwwathema/images/00"+ImgIdx+".png", speed: 4000
										});
			ImgIdx++;
			if(ImgIdx>6) ImgIdx = 1;
		
	});});
