Event.observe(window, 'load', function() {	slideShow();});// read the url for ajax-updatervar href = window.location.host;function slideShow(){		$('slideShow').style.display="none";	var current = $('nr').innerHTML;		var post2 = 'http://'+ href +'/pages/slideshow.php';	 	new Ajax.Updater(		'slideShow',		post2,		{			method: 'post',			parameters: 'current='+current,			requestHeaders: ['Expires', 'Thu, 17 May 2001 10:17:17 GMT', 'Cache-Control', 'no-cache, must-revalidate', 'Pragma', 'no-cache'],			onSuccess: function() {				Effect.Appear('slideShow',{duration:0.8});				setTimeout('slideShow()',7500);			}		});}