function thumbRotator(id, content, numT) {

	var photosUrl = new Array(4);
	
	photosUrl[0] = "foto4.jpg";
	photosUrl[1] = "foto6.jpg";
	photosUrl[2] = "foto8.jpg";
	photosUrl[3] = "foto10.jpg";
	
	if(numT == 4)
		numT = 0;
		
	var next = numT+1;

	$(id).attr("src", content + photosUrl[numT]);
	
	var tOut = setTimeout('thumbRotator(\'' + id + '\', \'' + content + '\', ' +next+')', 700);
	
	$(id).bind('mouseout click', function()
	{
		clearTimeout(tOut);
		$(id).attr("src", content + photosUrl[0]);
	});
}
