
	var sponsors = new Array();
sponsors.push(new Array('bayphotocom.gif', 'http://www.bayphoto.com/metalprints', 'Bay Photo Lab'));
sponsors.push(new Array('indurogearcom.jpg', 'http://bit.ly/cqFm6G', 'Induro PHQ'));
sponsors.push(new Array('lensbabycom.jpg', 'http://lensbaby.com/?utm_source=petapixel&utm_medium=webad&utm_content=s125x125&utm_campaign=zonecraigcolors', 'Lensbaby'));
sponsors.push(new Array('photoblogcom.png', 'http://www.photoblog.com', 'Photoblog.com'));
sponsors.push(new Array('photosheltercom.gif', 'http://bit.ly/cQoWHv', 'PhotoShelter'));
sponsors.push(new Array('rightscardsquare.jpg', 'http://store.petapixel.com/products/Photographers-Rights-Gray-Card-Set.html', 'Photographers Rights Gray Card Set'));
sponsors.push(new Array('tamroncom.jpg', 'http://www.tamron-usa.com/lenses/default-photo.asp?utm_campaign=2010&utm_medium=banners&utm_source=Petapixel&utm_content=A005&utm_term=banners', 'Tamron Lenses'));

	sponsors.sort(function() {return 0.5 - Math.random()});
	
	// add an advertise here to the array
	if(sponsors.length % 2 == 1) {
	   sponsors.push(new Array('advertisehere.jpg', 'http://www.petapixel.com/advertise/', 'Advertise on PetaPixel'));
	}
	
	var output = "";
	
	for(var i in sponsors) {
		output = output + "<div class='sponsor ad125x125'><a href='"+sponsors[i][1]+"' target='_blank'><img src='http://www.petapixel.com/ads/"+sponsors[i][0]+"' width='125' height='125' alt='"+sponsors[i][2]+"' /></a></div>";
	}
	
	document.write(output);
	