var text  = "www.pill.ch ... DIE WEBSITE IHRER APOTHEKE ... "; 
var speed = 170; 
var len   = text.length; 

function 
	changeStatusText
	(
	) 
	{ 
	  window.status = text; 
	  text = text.substring(1, len) + text.substring(0, 1); 
	  setTimeout("changeStatusText()", speed); 
	} 
	
changeStatusText();	
