/**
 * sorhome.js
 * Students of Round Official Web Site
 * Author:   Conure
 * Modified: 09 Apr. 2010
 */
var ImgIdx = 1;//To mark which image will be select next
//var ListEffect = ["DownTop", "LeftRight", "DownTop", "RightLeft"];
function PreloadImg(){
	$.ImagePreload("/sor/lib/i/home/image01.jpg");
	$.ImagePreload("/sor/lib/i/home/image02.jpg");
	$.ImagePreload("/sor/lib/i/home/image03.jpg");
	$.ImagePreload("/sor/lib/i/home/image04.jpg");
	$.ImagePreload("/sor/lib/i/home/image05.jpg");
}
var StartAds = function(){
	if(!$("#blanding").ImageAnimating()){
		$("#blanding").ImageSwitch({
			//Type: "ScrollIn",
			NewImage: "/sor/lib/i/home/image0"+(ImgIdx+1)+".jpg",
			//Direction: ListEffect[ImgIdx],
			//StartOpacity: 0,
			//EndOpacity: 0,
			Speed: 500
			},
			function(){
				ImgIdx++;
				if(ImgIdx>4) ImgIdx = 0;
			}
		);
	}
}

$(document).ready(function(){
	// Load headline text.
	//$('#headlineDiv ul').load('/sor/share/informations.html .recent');
	// Image switch
	PreloadImg();
	setInterval(StartAds,6000);
});
