document.getElementById('map').innerHTML = '<iframe width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.uk/maps?oe=utf-8&amp;client=firefox-a&amp;ie=UTF8&amp;q=The+Locksbottom+Clinic,+orpington&amp;fb=1&amp;gl=uk&amp;hq=The+Locksbottom+Clinic,&amp;hnear=Orpington,+Kent&amp;ved=0CEUQpQY&amp;hl=en&amp;view=map&amp;cid=12750136886411529420&amp;ll=51.366985,0.054696&amp;spn=0.005345,0.008562&amp;z=15&amp;output=embed&iwloc=B"></iframe>';

var images = document.getElementById('slideshow').getElementsByTagName('li'),
	counter = 1,
	max = images.length;

var animate = function () {
	images[0].style.marginLeft = (counter * -100) + '%';
	counter++;
	if (counter >= max)
		counter = 1;
}

setInterval("animate()", 10000);
