// Rotate Control

var currSel = 1;

 //Set variables, version is IE version number
	
	var ua = window.navigator.appVersion;
	var msie = ua.indexOf ( "MSIE " );
	var version = ua.substring(msie+5,msie+8);
	

function doAutoTrans() {


	document.getElementById("art0" + currSel + "").style.backgroundColor = "transparent"
	if (currSel < 5) {
		
		currSel = currSel + 1;
		
	
	} else {
		currSel = 1;
	
	}
	
	doTrans(currSel);

	setTimeout('doAutoTrans()',8000);
}

function doTrans(id) {
        
	   document.getElementById("art0" + currSel + "").style.backgroundColor = "transparent"
	   
	if (version >= "6.0")
	{
	   document.getElementById("mainControl").filters[0].apply();
	   
	 }
	 currSel = id;
		
	
		document.getElementById("art0" + currSel + "").style.backgroundColor = "#999999";
		
		if (version >= "6.0")
		{
		document.getElementById("artCaption").style.filter = "progid:DXImageTransform.Microsoft.Alpha( style=0,opacity=75)"; 
		} 
		
		
		document.getElementById("artCaption").style.backgroundImage = "url('images/filterbg.png')";
        
	
		if (id == 1) {
            
            document.getElementById("artDisp").style.backgroundImage = "url('mainImages/art1.jpg')";
            document.getElementById("artCaption").innerHTML = "<span class=\"Rstyle9\">Vegas Super Band - Starting March 22 at the South Point </span><br /><span class=\"Rstyle6\">Vegas Super Band, Playing the best of Party Music - Monday's at 8 pm South Point Casino Showroom $5 Cover</span>" ;
       		
			
		}
		 if (id == 2) {
            
            document.getElementById("artDisp").style.backgroundImage = "url('mainImages/art2.jpg')";
            document.getElementById("artCaption").innerHTML = "<span class=\"Rstyle9\">Salser Now Friday Nights! </span><br /><span class=\"Rstyle6\">Come and join the excitement at the Showroom at the South Point Casino. Doors open at 10:30PM - $10 cover includes free drink.</span>" ;
       				
		}
		 if (id == 3) {
            
            document.getElementById("artDisp").style.backgroundImage = "url('mainImages/art3.jpg')";
            document.getElementById("artCaption").innerHTML = "<span class=\"Rstyle9\">Vudu Spellz out Vegas</span><br /><span class=\"Rstyle6\">Get insight on the whats going on in Vegas from Vudu</span>" ;
     			
		}
		 if (id == 4) {
            
            document.getElementById("artDisp").style.backgroundImage = "url('mainImages/art4.jpg')";
            document.getElementById("artCaption").innerHTML = "<span class=\"Rstyle9\">Salsero</span><br /><span class=\"Rstyle6\">Join Michito Sanchez & his orchestra Fridays at the South Point</span>" ;
			
		}
		if (id == 5) {
            
            document.getElementById("artDisp").style.backgroundImage = "url('mainImages/art5.jpg')";
 			document.getElementById("artCaption").innerHTML = "<span class=\"Rstyle9\">The Spazmatics</span><br /><span class=\"Rstyle6\">Every Saturday at 10pm at the South Pont Casino</span>" ;
		}
    		if (version >= "6.0")
	{
    	document.getElementById("mainControl").filters[0].play();
    }
	
		
	
}