    var HeadLineArray = new Array();	
    HeadLineArray [1] = "Introducing Pro Active Healthcare.";
	HeadLineArray [2] = "Your patients are the central focus of Pro Active.";
	HeadLineArray [3] = "Thank you for your support during our first year!";
	HeadLineArray [4] = "Here's what's new at West Park Pro Active Healthcare!";
	HeadLineArray [5] = "Ask about our rehabilitative services/wellness programs.";
	HeadLineArray [6] = "We've made some changes to better serve our clients!";
	HeadLineArray [7] = "Diabetes & Hypertension Education Classes at Pro Active";
	HeadLineArray [8] = "HeadLine 8";
	HeadLineArray [9] = "HeadLine 9";		                        
	HeadLineArray [10] = "HeadLine 10";	
	
	mCurrentNewsLetter = 8;
	
function ShowImages(){  
  
	for (i = 1; i < mCurrentNewsLetter ; i++)
	{
		mPic = "Pic" + i;
	  	document.getElementById(mPic).style.visibility="visible"; 
	}
	mPic = "prodatemainpage/button-" + mCurrentNewsLetter + "_10.gif";
	
	MM_swapImage('MainButton','',mPic,1)

}
  
  
function NewsOn(mNumber) {
	mText = "For the complete story click on circle " + mNumber;
        document.getElementById("NewsHeadLine").firstChild.data = HeadLineArray[mNumber];
        document.getElementById("NewsHeadLine2").firstChild.data = mText;
}

function NewsOff() {
        document.getElementById("NewsHeadLine").firstChild.data = "";
        document.getElementById("NewsHeadLine2").firstChild.data = "";
}
