var curindeximg="#indeximg1"
var newshowimg=""
var btnno=1
var totalimg=4
var autoonoff=true

$(document).ready(			  
	function(){	
		$('#indeximg4').hide()
		$('#indeximg3').hide()
		$('#indeximg2').hide()
		$('#indeximg1').hide()

		$('#indeximg4').fadeOut()
		$('#indeximg3').fadeOut()
		$('#indeximg2').fadeOut()
		$('#indeximg1').fadeOut()
		
		$('#indeximg1').show()
		$('#indeximg1').fadeIn()
		
		window.setInterval(function(){autoimg();},3000); 		
		
		function autoimg(){
			if (autoonoff==true){
				if (btnno==totalimg){
					btnno=1
				}else{
					btnno++
				}
				
				newshowimg="#indeximg" + btnno
				$(newshowimg).fadeIn(1000)
				$(curindeximg).fadeOut(1000)
				curindeximg=newshowimg
			}
		}
		
	}<!--function-->
)<!--ready-->
