<!-- //Random Images

var images = new Array(4);
var currentImage = 0;
var unitTime = 7 * 1000;
var csImages = new Array(4);
var csCurrentImage = 0;

function atg_rotateImages() {
	currentImage = (currentImage + 1) % 5;
	if (document.getElementById("downloadImages") != null) {
		document.getElementById("downloadImages").innerHTML = images[currentImage];
	}
	csCurrentImage = (csCurrentImage + 1) % 5;
	if (document.getElementById("csDownloadImages") != null) {
		document.getElementById("csDownloadImages").innerHTML = csImages[csCurrentImage];
	}
}

images[0] = "<a href=\"/elevenways-close-sales/\"><img src=\"/en/images/ads/elevenways-shopping-cart.gif\" title=\"Supercharge Your Shopping Cart: 11 Ways to Close More Online Sales\" alt=\"Supercharge Your Shopping Cart: 11 Ways to Close More Online Sales\" width=\"185\" height=\"120\" border=\"0\"/></a>";
images[1] = "<a href=\"/forresterwave2009/q109/?src=ATGWebProduct\"><img src=\"/en/images/ads/forrester-wave-report.gif\" title=\"Forrester Wave: B2C eCommerce Platforms Q12009\" alt=\"Forrester Wave: B2C eCommerce Platforms Q12009\" width=\"185\" height=\"120\" border=\"0\"/></a>";
images[2] = "<a href=\"/gartner-magic-quadrant-2008/?src=ATGweb\"><img src=\"/en/images/ads/gartner-magic-quad-2008.gif\" title=\"Gartner Magic Quadrant for E-Commerce\" alt=\"ATG positioned in the Leaders Quadrant of the Magic Quadrant for E-Commerce\" width=\"185\" height=\"120\" border=\"0\"/></a>";
images[3] = "<a href=\"/elevenways/\"><img src=\"/en/images/ads/elevenways-cmp.gif\" title=\"Consumer Manufacturers: Learn 11 Ways to Engage Your Customers Directly\" alt=\"Consumer Manufacturers: Learn 11 Ways to Engage Your Customers Directly\" width=\"185\" height=\"120\" border=\"0\" /></a>";
images[4] = "<a href=\"/mobile-shopping/?refid=cowpatgblueus\"><img src=\"/en/images/ads/forrester-iphone.gif\" title=\"Is an iPhone App Right for Your Brand? Find out in this Forrester Research Report\" alt=\"CIs an iPhone App Right for Your Brand? Find out in this Forrester Research Report\" width=\"185\" height=\"120\" border=\"0\" /></a>";
csImages[0] = "<a href=\"/resource-library/case-studies/CS-BSO.pdf\"><img src=\"/en/images/ads/bso-case-study.gif\" title=\"The Boston Symphony Orchestra\'s personalized e-commerce site brings in nearly half of the organization\'s total sales\" alt=\"The Boston Symphony Orchestra\'s personalized e-commerce site brings in nearly half of the organization\'s total sales\" width=\"185\" height=\"120\" border=\"0\"/></a>";
csImages[1] = "<a href=\"/resource-library/case-studies/CS-Tommy-Hilfiger.pdf\"><img src=\"/en/images/ads/tommy-hilfiger-case-study.gif\" title=\"Learn how Tommy Hilfiger tripled its online revenue with ATG Commerce OnDemand and ATG Recommendations\" alt=\"Learn how Tommy Hilfiger tripled its online revenue with ATG Commerce OnDemand and ATG Recommendations\" width=\"185\" height=\"120\" border=\"0\"/></a>";
csImages[2] = "<a href=\"/resource-library/case-studies/CS-esurance-Click-to-Call.pdf\"><img src=\"/en/images/ads/esurance-case-study.gif\" title=\"Find out how Esurance increased online inquiries and reduced abandonment with no upfront investment\" alt=\"Find out how Esurance increased online inquiries and reduced abandonment with no upfront investment\" width=\"185\" height=\"120\" border=\"0\"/></a>";
csImages[3] = "<a href=\"/resource-library/case-studies/Case-Study-Casual-Male.pdf\"><img src=\"/en/images/ads/casual-male-case-study.gif\" title=\"Casual Male counts on the ATG Commerce Suite for a multi-channel solution\" alt=\"Casual Male counts on the ATG Commerce Suite for a multi-channel solution\" width=\"185\" height=\"120\" border=\"0\" /></a>";
csImages[4] = "<a href=\"/resource-library/case-studies/CS-Continental-Airlines-Click-to-Call.pdf\"><img src=\"/en/images/ads/continental-airlines-cs.gif\" title=\"Learn how Continental Airlines achieves a 35 percent online conversion rate and reduces Web site abandonment with Click to Call.\" alt=\"Learn how Continental Airlines achieves a 35 percent online conversion rate and reduces Web site abandonment with Click to Call.\" width=\"185\" height=\"120\" border=\"0\" /></a>";
setInterval("atg_rotateImages()", unitTime);

// -->