glow.ready(
function(){
var carList = glow.dom.get(".carousel").children().filter(function(){
	return !glow.dom.get(this).hasClass("hasCarousel");
});
carList.each(function(i){
	new glow.widgets.Carousel(carList[i],{
		className: "hasCarousel",
		loop: 1,
      		pageNav: false,
      		size: 3,
		theme: "light",
      		slideOnScroll: true
	});
});
}
);
