





var imgs = new com.lasagna.iComp.Image();
	var anim   = new com.iDesignMedia.iTweaks.Animate();
    imgs.borderColors = false;

	imgs.over        = "#F1BB24";
	imgs.out         = "#999";
	imgs.thumbsPath  = "Assets/Slide/";
	imgs.parentPath  = "Assets/Slide/";
	imgs.jQuery      = true;
	imgs.rail        = true;
	imgs.ThumbHeight = 34;
	imgs.ThumbWidth  = 34;
	imgs.offset      = 562;
  	imgs.isThumbs    = false;
	imgs.useThumbs   = true;
//	imgs.ThumbStyle  = "thumbBox";
//	imgs.useRandomImages = true;
	imgs.useNumbers     = true;
	imgs.backgroundOver = "#F1BB24  url('Assets/thumbBox_over.png') bottom right no-repeat";
	imgs.backgroundOut  = "#999  url('Assets/thumbBox.png') bottom right no-repeat";
	//imgs.limit       = 2;
	//imgs.container = ["second","third"];
	//imgs.sameColors();
	imgs.links = ["#","strategyDev.php","HumanCap.php","corporateRet.php","organisationalCult.php","businessPlanning.php","#"];
	
	
	
function SlideCC(){
			
		 imgs.lastIndex   = false;
	    _img   = imgs.computeImages(6,"",".png");
		_thumb = imgs.computeImages(6,"",".png");
	    imgs.thumbsURL(6);
		imgs.ImageURL(_img);
		imgs.add("slide_parent","slide_thumb");
		
		imgs.jQueryEvent("click",Imagehandler);
			
			anim.enterFrame(function(){
			
			imgs.update("next");
			
			},26000);
			
			}
	
	
	function Imagehandler(evnt){

		     imgs.defaults(evnt);
			 imgs.automation(evnt);
			 
        };
	
