/**
* Fullscreenr - lightweight full screen background jquery plugin
* By Jan Schneiders
* Version 1.0
* www.nanotux.com
**/

//about page//
function slideSwitch_index() {
	var id=$('#ImgCurrent_index').val();
	 $('.ImgHeaderIndex').animate({opacity: 0.0}, 1000,function (){
		 $('.ImgHeaderIndex').css('background','url(images/banner_index/'+id+'.jpg) no-repeat top center');
	});
	 $('.ImgHeaderIndex').animate({opacity: 1.0}, 1000);
	 if(id==7){var next=1;}else{var next=parseInt(id)+parseInt(1);}
	 $('#ImgCurrent_index').val(next);
}

$(function(){
	setInterval("slideSwitch_index()", 10000);
});
//end about page//


