<!-- Hide script from old browsers

	// [IMAGE, ALT TEXT, URL]
	var arrImagesC = [
		["/images/homepage_nikon3.png", "Nikon", "http://blog.claudiak.com/"],
		["/images/homepage_national_fisherman_magazine.png", "National Fisherman", "http://blog.claudiak.com/"],
		["/images/homepage_bostonweddings_2010.png", "Boston Weddings Magazine 2010", "http://blog.claudiak.com/"],
		["/images/homepage_well_wed.png", "Well Wed Magazine", "http://blog.claudiak.com/"],
		["/images/homepage_rangefinder3.png", "Rangefinder Magazine", "http://blog.claudiak.com/"],
		["/images/homepage_plumtv.png", "Plum", "http://blog.claudiak.com/"],
		["/images/homepage_ppam2.png", "Professional Photographers of Massachusetts", "http://blog.claudiak.com/"],
		];

	var rtC = 0;
	var imgCountC = arrImagesC.length;

	function rotateC() {

		if ( document.images ) {

			rtC++;

			if (rtC == imgCountC-1) { rtC = 0; }

			var imgRotateC = document.getElementById('imgRotateC');
			imgRotateC.src = arrImagesC[rtC][0];
			imgRotateC.alt = arrImagesC[rtC][1];

			var linkRotateC = document.getElementById('linkRotateC');
			linkRotateC.href = arrImagesC[rtC][2];

		  	setTimeout("rotateC();", 5 * 1500);
	  	}
	}

	// End hiding script from old browsers -->
