

var ij=1;

	try
	{	
	
	var z = window.setInterval('changeImages();',5000); 
}

catch(e)
	{}
finally
{}
	
	
		function changeImages()
		
		{
		
		//alert("hi");
		
		if (ij > 17)
		{
		ij=1;
		}
		try
		{
		document.getElementById("FrontImage").src="/Tara/images/TARAImages/HomePage/" + ij + ".gif";
		}
		catch(e)
		{}
		finally
{}
	
		ij = ij + 1;
		}
		
		
		
		
	
 

	