Event.onDOMReady(function() {
	var randomizeThese = [
		'<a href="/dotmac/webgallery.html" class="block"><img src="http://images.apple.com/aperture/images/contentfooter_galleries_title20080206.gif" width="140" height="17" alt="Present on the web">\r<p>Post photos in a MobileMe Gallery.<\/p>\r<img src="http://images.apple.com/aperture/images/contentfooter_galleries20080206.png" width="132" height="116" alt="" class="center" style="margin-top:0;"><\/a>',	
		'<a href="/aperture/resources/printproducts.html" class="block">\r<img src="http://images.apple.com/aperture/images/contentfooter_print_title20080206.gif" width="194" height="17" alt="Professional Print Products">\r<p>Order beautiful prints and books.<\/p>\r<img src="http://images.apple.com/aperture/images/contentfooter_print20080206.png" width="151" height="107" alt="Professional Print Products" class="center"><\/a>'
	];

	if ($('cf-gallery')) {
		var randNum = Math.floor(Math.random() * (randomizeThese.length));
		$('cf-gallery').innerHTML = randomizeThese[randNum];
	}
});

