// JavaScript Document
//js for virgohospital


var Banners = new Array("images/splash1.jpg","images/splash2.jpg","images/splash3.jpg")
var Counter=0

function splashcycle()
{
	Counter=Counter+1

	if(Counter==3) 
	{
	Counter=0
	}
	
	document.Splash.src=Banners[Counter]
	setTimeout("splashcycle()",3000)
	}
	
function winX() {
    var openP1;
    openP1=window.open("http://www.amsreferencelab.com/services/hospitals.html","AMS","width=400,height=400,scrollbars=yes,resizable=yes,left=450,top=150")
    
    }
	function winY() {
    var openP1;
    openP1=window.open("http://www.stickley.com/news/index.html","StickleyNews","width=400,height=400,scrollbars=yes,resizable=yes,left=450,top=150")
    
    }
    
//Scrolling banner
myMsg = "Welcome to the Virgo Hospital home page."
i = 0

function scrollMsg(){
    window.status = myMsg.substring(i,myMsg.length) + myMsg.substring(0,i)
    if (i < myMsg.length){
        i++
    }
    else{
        i = 0
    }
    setTimeout("scrollMsg()",50)
}
