


function loadbanners() { 
	loadbanners_left();
	 loadbanners_right();



} 


function loadbanners_left() { 
	index1 = 0;
	listofimages = new Array(9);
	listofimages[0] = new Image(275,65)
	listofimages[0].src = "images/banners/banner_softwareag.gif"
	listofimages[1] = new Image(275,65)
	listofimages[1].src = "images/banners/banner_techlogix.gif"
	listofimages[2] = new Image(275,65)
	listofimages[2].src = "images/banners/banner_appian.gif"
	listofimages[3] = new Image(275,65)
	listofimages[3].src = "images/banners/banner_tibco.gif"
	listofimages[4] = new Image(275,65)
	listofimages[4].src = "images/banners/banner_isssp.gif"
	listofimages[5] = new Image(275,65)
	listofimages[5].src = "images/banners/banner_bu.gif"
	listofimages[6] = new Image(275,65)
	listofimages[6].src = "images/banners/banner_abpmp.jpg"
	listofimages[7] = new Image(275,65)
	listofimages[7].src = "images/banners/banner_omg.gif"
	listofimages[8] = new Image(275,65)
	listofimages[8].src = "images/banners/banner_bpm-soa.gif"
	listofimages[9] = new Image(275,65)
	listofimages[9].src = "images/banners/banner_bpm.gif"
	

	
	thetimer = setTimeout("changeimage()", 4000);


} 

function loadbanners_right() { 
	index2 = 0;
	listofimages_right = new Array(1);

	listofimages_right[0] = new Image(275,65)
	listofimages_right[0].src = "images/banners/banner_bbc.gif"
	listofimages_right[1] = new Image(275,65)
	listofimages_right[1].src = "images/banners/banner_auraportal.gif"


	thetimer_right = setTimeout("changeimage_right()", 4000);

} 



function changeimage() { 
	index1 = index1 + 1
	// set random number  
	// randomnumber = (Math.round((Math.random()*6)+1))
	//index1 = randomnumber
	if (index1 == "10") { 
		index1 = 0 
	} 
	imagesource = listofimages[index1].src
	window.document.banner1.src = imagesource
	thetimer = setTimeout("changeimage()", 3000);
} 

function changeimage_right(){ 
	index2 = index2 + 1
	// set random number  
	// randomnumber = (Math.round((Math.random()*6)+1))
	//index2 = randomnumber
	if (index2 == "2") { 
		index2 = 0 
	} 
	imagesource2 = listofimages_right[index2].src
	window.document.banner2.src = imagesource2
	thetimer_right = setTimeout("changeimage_right()", 2500);
} 


function changepage() { 

	if (index1 == 0) { 
	newlocation = "http://www.softwareag.com" 
	}
	else if (index1 == 1) { 
	newlocation = "http://www.techlogix.com" 
	}
	else if (index1 == 2) { 
	newlocation = "http://www.appian.com" 
	}
	else if (index1 == 3) { 
	newlocation = "http://www.tibco.com/software/business-process-management/default.jsp" 
	}
    else if (index1 == 4) { 
		newlocation = "http://www.isssp.com" 
	}
	else if (index1 == 5) { 
		newlocation = "http://www.butrain.com/se/promo/BusProcess.asp?source=24058" 
	}
	else if (index1 == 6) { 
	newlocation = "http://www.abpmp.org" 
	}
	else if (index1 == 7) { 
	newlocation = "http://www.omg.org" 
	}
	else if (index1 == 8) { 
	newlocation = "http://www.bpmsoa-communityofpractice.org/cs-bpt" 
	}
	else if (index1 == 9) { 
	newlocation = "http://www.irmuk.co.uk/bpm2010" 
	}
	location = newlocation 

} 

function changepage_right() { 
  
		if (index2 == 0) { 
		newlocation = "http://www.buildingbusinesscapability.com" 
	}
	else if (index2 == 1) { 
		newlocation = "http://www.auraportal.com" 
	}



	location = newlocation 
} 

