﻿var isFound = false;

function detectCloudCarousel()
{
  var element = document.getElementById("carousel1");
   if (element != null)
   {  
        if (isFound == false)
        {
             isFound = true;
          	
	        $("#carousel1").CloudCarousel(		
		        {			
			        xPos: 314,
			        yPos: 100,
			        reflHeight:70,
			        reflGap: 4,
			        minScale: 0.25,
			        autoRotate:true,
			        autoRotateDelay:3000,
			        yRadius: 140,
			        xRadius: 280
		        }
	        );
        }
    }
    else isFound = false;
}
