/**
* @desc:   
* @author: Marc ter Horst
* @date:   01-10-2007
*
*/

var counter = 0;

$(document).ready(function () 
{

	// Rotate the images
	$(".switch > span").each(function() {
		$(this).click(function()
		{
			$(".image > a > img").hide();
			$("#customer_" + $(this).attr("rel")).show();
			$(".switch > span").removeClass("active");
			$(this).addClass("active");
		});
	});

});
