function showTeaser(i)
{
	var box;
	box= document.getElementById('teaser');
	
	box.style.display = 'block';
	
	
	/****
			ENGLISH TEASERS
	*********************************/
	
	if ( i == "1" ) // hysterectomy teaser
	{
		
		box.innerHTML="If your doctor recommends hysterectomy, you may be a candidate for da Vinci&reg; Hysterectomy, one of the most effective...";
	}
	
	if ( i == "2" ) // mitral valve repair teaser
	{
		box.innerHTML="If your doctor recommends surgery to treat mitral valve prolapse, you may be a candidate for da Vinci&reg; Mitral Valve Repair..."
	}
	
	if ( i == "3" ) // prostatectomy teaser
	{
		box.innerHTML="Referred to by many as robotic surgery for prostate cancer or robotic prostatectomy, da Vinci&reg; Prostatectomy is more accurately..."
	}
	
	/****
			FRENCH TEASERS
	*********************************/
	
	if ( i == "4" ) // hysterectomy teaser
	{
		
		box.innerHTML="Si votre docteur recommande une hystérectomie, vous aurez peut-être à choisir da Vinci&reg; Hystérectomie, une des options de...";
	}
	
	if ( i == "5" ) // mitral valve repair teaser
	{
		box.innerHTML="Si votre docteur recommande une intervention chirurgicale pour traiter un prolapsus de la valvule mitrale, vous aurez peut-être à..."
	}
	
	if ( i == "6" ) // prostatectomy teaser
	{
		box.innerHTML="Souvent désignée comme une chirurgie robotique pour le cancer de la prostate ou comme prostatectomie robotique, la da Vinci&reg;..."
	}
}

function hideTeaser()
{
	var box;
	box = document.getElementById('teaser');
	
	box.style.display = 'none';
}

//window.onload = hideTeaser();
