
function flipNews(item)
{
	switch(item)
	{
				case 0:
			{
				document.getElementById("news_mod").innerHTML='<b>“Potential Game-Changing” Confocal Technology Opening Eyes</b><br/>(Montvale, NJ) – Everyone knows screening endoscopy is today’s current standard of practice for detecting pre-cancerous and cancerous lesions of the colon. Yet, even with cutting-edge advances in ... <a href="?option=com_content&task=view&id=131&Itemid=197">Read More!</a>';
				break;
			}
						case 1:
			{
				document.getElementById("news_mod").innerHTML='<b>PENTAX Medical gains focused strength from HOYA Merger</b><br/>(MONTVALE, NJ) &ndash; PENTAX Medical Company, long one of the market leaders in the  innovation and manufacture of medical imaging technologies for the GI, ENT and  pulmonary medical fields, recently... <a href="?option=com_content&task=view&id=95&Itemid=197">Read More!</a>';
				break;
			}
				}
	Effect.Appear('news_mod', {duration: 1.0})
	item++;
	if(item==3)
	{
		item=0;
	}
	Effect.Fade("news_mod", { delay: 7.0 });
	setTimeout("flipNews(" + item + ")", 9000);	
}

