// JQuery Carousel
$(document).ready(function(){
    $(".cb90").colorbox({transition:'elastic', speed:'1000', width:'800px', height:'90%', iframe:'true', opacity: '0.65'});
	$("#carousel ul").each(function(){
		//Set the interval to 10 seconds
		var t = setInterval(function(){
			$("#carousel ul").animate({marginLeft:-135},1000,function(){
				//This code runs after the animate completes
				$(this).find("li:last").after($(this).find("li:first"));
				//Now the left list item has been removed, reset the margin
				$(this).css({marginLeft:0});
			})
		},5000);
	});
});
