// JavaScript Document
var myPictures=new Array(); 
myPictures[0]="free-installation.jpg";       
myPictures[1]="free-second.jpg";
myPictures[2]="free-dvr.jpg";
myPictures[3]="free-hbo-and-showtime.jpg";
myPictures[4]="save-180.jpg";
myPictures[5]="new-promo1.jpg";

function foo()
{
	
	
	
	
	window.setTimeout ('changepic('+0+')' ,1500);
	window.setTimeout ('changepic('+1+')' ,3000);
	window.setTimeout ('changepic('+2+')' ,4500);
	window.setTimeout ('changepic('+3+')' ,6000);
	window.setTimeout ('changepic('+4+')' ,7500);
	window.setTimeout ('changepic('+5+')' ,9000);
}
function changepic(picture)
{
	
	while(document.getElementById("pictures").hasChildNodes())
		{
			document.getElementById("pictures").removeChild(document.getElementById("pictures").firstChild);
		}
	var image = document.createElement('img');
	image.setAttribute('src', '/images/'+myPictures[picture]);
	image.setAttribute('alt', 'Free Installation');
	image.setAttribute('width', '595px');
	image.setAttribute('height', '337px');
	document.getElementById("pictures").appendChild(image);
	
}

