var curindeximg="#indeximg1"
var newshowimg=""
var btnno=1
var totalimg=6
var autoonoff=true

$(document).ready(			  
	function(){
		$('#indeximg6').hide()
		$('#indeximg5').hide()
		$('#indeximg4').hide()	
		$('#indeximg3').hide()	
		$('#indeximg2').hide()
		$('#indeximg1').hide()

		$('#indeximg6').fadeOut()
		$('#indeximg5').fadeOut()
		$('#indeximg4').fadeOut()	
		$('#indeximg3').fadeOut()	
		$('#indeximg2').fadeOut()
		$('#indeximg1').fadeOut()
		
		$('#indeximg1').show()
		$('#indeximg1').fadeIn()
		
		
		window.setInterval(function(){autoimg();},5000); 	
	
		
		function autoimg(){			
			if (autoonoff==true){
				if (btnno==totalimg){
					btnno=1
				}else{
					btnno++
				}
				
				newshowimg="#indeximg" + btnno
				$(newshowimg).fadeIn(1000)
				$(curindeximg).fadeOut(1000)
				curindeximg=newshowimg
			}
		}
		
		$('#imgbar a').click(
			function($e){
			  if (this.id!=btnno){
				 autoonoff=false
				newshowimg="#indeximg" + this.id
				$(newshowimg).fadeIn(1000)
				$(curindeximg).fadeOut(1000)
				btnno=this.id
				curindeximg=newshowimg
			  }
			}<!--function e-->
		)<!--click-->
	}<!--function-->
)<!--ready-->
