// JavaScript Document

////////////////////////////////////////////////////////////////////////////////
/// timers で 画像を切り替え
////////////////////////////////////////////////////////////////////////////////

var i=1;
$(document).everyTime(7000 , function(){

	//$("img.topimg").attr("src",("/wp-content/themes/asmi2.0/common/img/wallpaper_ind0"+(i)+".png"));
	
	$("img.topimg").before('<img src="/wp-content/themes/asmi2.0/common/img/wallpaper_ind0' + i + '.jpg" alt="wallpaper_ind01" width="1200" height="620" class="topimg" />');
	$("img.topimg:last").fadeOut("slow",function(){
		$(this).remove();
	});
	i++;
	
	if( i== 4){
		i=0;
	}
});











