<!-- Hide script from old browsers

	// [IMAGE, ALT TEXT, URL]
	var arrImagesA = [
		["/images/homepage_npr2.png", "National Public Radio", "http://blog.claudiak.com/"],
		["/images/homepage_o_magazine.png", "The Oprah Magazine", "http://blog.claudiak.com/"],
		["/images/homepage_town_and_country_magazine.png", "Town & Country", "http://blog.claudiak.com/"],
		["/images/homepage_theknot_2009.png", "The Knot - 2010", "http://blog.claudiak.com/"],
		["/images/homepage_professional_photographer.png", "Professional Photographer Magazine", "http://blog.claudiak.com/"],
		["/images/homepage_boston_weddings.png", "Boston Weddings Magazine", "http://blog.claudiak.com/"],
		["/images/homepage_lowepro.png", "Lowepro", "http://blog.claudiak.com/"],
		["/images/homepage_newyorker2.png", "New Yorker Magazine", "http://blog.claudiak.com/"],
		["/images/homepage_spd2.png", "Studio Photography and Design", "http://blog.claudiak.com/"],
		["/images/homepage_graceormonde.png", "Grace Ormonde", "http://blog.claudiak.com/"],
		];

	var rtA = 0;
	var imgCountA = arrImagesA.length;

	function rotateA() {

		if ( document.images ) {

			rtA++;

			if (rtA == imgCountA-1) { rtA = 0; }

			var imgRotateA = document.getElementById('imgRotateA');
			imgRotateA.src = arrImagesA[rtA][0];
			imgRotateA.alt = arrImagesA[rtA][1];

			var linkRotateA = document.getElementById('linkRotateA');
			linkRotateA.href = arrImagesA[rtA][2];

		  	setTimeout("rotateA();", 4 * 1533);
	  	}
	}

	// End hiding script from old browsers -->
