var img_arr = new Array(
	'<img src="images/home/banner01.jpg" width="1002" height="473" class="box"/>'
	,'<img src="images/home/banner02.jpg" width="1002" height="473" class="box"/>'
);
var img_index = 1;

function init(){

	loadImage("images/home/banner01.jpg",loaded_init);
	//$('.banner .list .box').load(function(){
//		loaded_init();
//	})
}


function loaded_init(){	

	hideWhiteMask();

	if(typeof window.showSingleWord == 'function') showSingleWord();
	
	
	
	checkCruveExists(1);
	
	if(typeof window.show_flower_bg == 'function') show_flower_bg(5);
	
	setInterval(function(){

		$('div.list')
		.prepend(img_arr[img_index]);
		
		$('div.list img:first')
		.hide();
		
		img_index = img_index >= img_arr.length - 1 ? 0 : img_index + 1;
		
		$('div.list img:last')
		.fadeOut(1000,'easeInOutSine',function(){			
			$(this).remove();
			
			$('div.list img:first')
			.fadeIn(1000,'easeInOutSine');
		});
	},8000);	
}
