window.onload = $(function() {
		$(".buttons:gt(0)").hide();
		$(".myCarousel").jCarouselLite({
			auto: 6500,
			visible: 1,
  			speed: 700,
			beforeStart: function(visible) {
				$(".buttons", visible).fadeOut(500);
			},
			afterEnd: function (visible) {
				$(".buttons", visible).fadeIn(500);
			},
			btnGo: 
			[".b1", ".b2", ".b3"]
			/* [".b1", ".b2", ".b3", ".b4", ".b5"] */
		});
	});
$(".myCarousel").hide();

