// JavaScript Document
$(document).ready(function(){

	var index = 2;	
	//Get the total picture
	var len = $("#home_banner li").size();	
	//Automatically switch
	$("#banner .desc").animate({ opacity: 0.85 }, 1 ); //Set Opacity
	var myTime = setInterval(function(){
		showimg(index);
		index++;
		if (index>len){
		index=1;
		}
	},4000);
})

//Show Pictures
function showimg(i){
	$("#home_banner li").fadeOut(800);
	$("#pic"+i).fadeIn(800);
}

MM_preloadImages('images/Red_on.png', 'images/Red_off.png');
