//********** DON'T forget to set the last number at below *******
var numberOfLastImage =10;
//***************************************************************

	var numberOfFirstImage = 0;	
	var delayIn100thSeconds = 250;

//we should have the logo hosted in www.informatm.com/itmlogos/ or www.informatm.com/pdf
	var logo_site = "http://www.informatm.com/";

	var destination = new Array();
	var slide = new Array();


//*******************************************************************************
// initialize logo array 
//**** REMEMBER *****************************************************************
//**** to change the address when you copy this as template across to other site 
//*******************************************************************************
	default_destination= "/newt/l/networkevolution/lte08/associations.html";

	for (var i=numberOfFirstImage; i<=numberOfLastImage;i++){
		destination[i] = default_destination; 
	}
	
//**************************************************************
//***** use YK's logo gallery to get the suitable logo here. The url is http://isg-stage/marlin/30000000681/LOGO
//**** in case there is new logo and you have no access to xtm then you may upload logo to and use www.informatm.com/itmlogos/xxx.gif
//*** the first logo below show an example.

	slide[0] = "pdf/Mar-2008/26/3gpp.gif"
	slide[1] = "pdf/Dec-2007/19/connect_world.gif";;
	slide[2] = "pdf/Jan-2008/2/etsi2.gif";
	slide[3] = "pdf/Jan-2008/3/femtoforum.gif";
	slide[4] = "pdf/Jan-2008/3/fmca.gif";
	slide[5] = "pdf/Jan-2008/3/gsa.gif";
	slide[6] = "pdf/Jan-2008/4/icu.gif";
	slide[7] = "pdf/Jan-2008/4/ipv6forum.gif";
	slide[8] = "pdf/Jan-2008/7/umtsforum.gif";
	slide[9] = "pdf/Jan-2008/7/umts_tdd.gif";
	slide[10] = "pdf/Jan-2008/7/wip.gif";
	
// in case you have a special logo pointing to a specific place then in here
// set destination[x] = "your destination url"

//destination[2] = "http://www.hp.com"; // special requested destination
	
//*******************************************************************************
//**** DON'T TOUCH ANYTHING AT BELOW ********************************************

var slideNumber = 0;

function goTo()
{
	window.location.href = destination[slideNumber];
}



function showNextSlide()
{	
	slideNumber++
	if(slideNumber > numberOfLastImage )	// if past last slide
		{
			slideNumber = numberOfFirstImage ;
		}

	document.screen.src = logo_site+slide[slideNumber]; 	// send slide to screen
	
	setTimeout("showNextSlide()",delayIn100thSeconds * 12);

}




