//setInterval("display_image()",10000);

function display_image()
{
	if(document.getElementById("holiday").src == "http://www.byyani.com/images/home-july4th.jpg")
	{
		document.getElementById("holiday").src = "http://www.byyani.com/images/home-halloween.jpg";
	}
	else if(document.getElementById("holiday").src == "http://www.byyani.com/images/home-halloween.jpg")
	{
		document.getElementById("holiday").src = "http://www.byyani.com/images/home-christmas.jpg";
	}
	else if(document.getElementById("holiday").src == "http://www.byyani.com/images/home-christmas.jpg")
	{
		document.getElementById("holiday").src = "http://www.byyani.com/images/home-july4th.jpg";
	}
}
