// JavaScript Document
var indexSlideShow={};
indexSlideShow.items=[
					  	{logo_offset_y:0, logo:"/static/images/logos/Arsenal_logo90.png", scrshot:"/static/images/scrshots/arsenalSCRshot360.png"},
						{logo_offset_y:60, logo:"/static/images/logos/30love_logo90.png", scrshot:"/static/images/scrshots/30LoveSCRshot360.png"},
						{logo_offset_y:70, logo:"/static/images/logos/Hightribe_logo90.png", scrshot:"/static/images/scrshots/hightribeSCRshot360.png"},
						{logo_offset_y:70, logo:"/static/images/logos/Masher_logo90.png", scrshot:"/static/images/scrshots/masherSCRshot360.png"},
						{logo_offset_y:60, logo:"/static/images/logos/TopGear_logo90.png", scrshot:"/static/images/scrshots/iceMyCarSCRshot360.png"},
						{logo_offset_y:10, logo:"/static/images/logos/GlobalIcon_logo90.png", scrshot:"/static/images/scrshots/globalIconSCRshot360.png"}
					  ];
indexSlideShow.currentItem=-1;
indexSlideShow.start=function(){
	var d=document.getElementById("slides");
	  if(d){
		  var t=[];
		  t[t.length]='<div class="noscript_slides">';
		  t[t.length]='<img id="scrshot" onclick="window.location.href=\'partners.jsp\'" onload="setTimeout(function(){indexSlideShow.showNextSlide();},5000);" src="';
		  t[t.length]='" alt="" title="" width="360" />';
		  t[t.length]='<img id="logo" onclick="window.location.href=\'partners.jsp\'"src="';
		  t[t.length]='" alt="" title="" width="90" />';
		  t[t.length]='<h2>We are the engine of social media</h2>';
		  t[t.length]='<p>Use our technology and global network to power your online community</p>';
		  t[t.length]='</div>';
		  d.innerHTML=t.join("");
			indexSlideShow.showNextSlide();
	  }
};
indexSlideShow.showNextSlide = function(){
  indexSlideShow.currentItem++;
  if(indexSlideShow.currentItem>=indexSlideShow.items.length){
	  indexSlideShow.currentItem=0;
  }
	var scrshot=document.getElementById("scrshot");
	if(scrshot){
		  scrshot.setAttribute("src",indexSlideShow.items[indexSlideShow.currentItem].scrshot);
	}
	var logo=document.getElementById("logo");
	if(logo){
		  logo.setAttribute("src",indexSlideShow.items[indexSlideShow.currentItem].logo);
		  if(logo.style){
		  	logo.style.paddingTop = (indexSlideShow.items[indexSlideShow.currentItem].logo_offset_y+"px");
		  }
	}
};