$(document).ready(function() {
	$(".infoList dd").each(function(index) {
		$(this).show();
		if ($(this).find(".imgList").size() == 1) {
			$(this).find(".imgList").jCarouselLite({
		    btnNext: ".btRight",
		    btnPrev: ".btLeft",
		    visible: 1,
		    scroll: 1,
		    speed: 250,
		    circular: true
		  });
		}
		$(this).hide();
	});
});