	
		sponsors = 1;
		function changeSponsors()
		{
			if(sponsors == 3)
			{
				var newSponsors = 1;
			}
			else
			{
				var newSponsors = sponsors+1;
			}
			$('#sponsors-'+sponsors).fadeOut('slow');
			$('#sponsors-'+newSponsors).fadeIn('slow');
			sponsors = newSponsors;
		}
		t=setInterval('changeSponsors()',10000);
		
