jQuery('html').addClass('js');

(function($) { 
  $(function() {

  $(document).ready(function(){


	$('#carousel').queue("myQ",function(next) {
		next();
	});	

	$('#carousel').delay( 1000, "myQ" );

	$('#carousel').queue("myQ",function(next) {
		$('#carousel').show("slide", { direction: "right" }, 700);
		next();
	});	
	
	//$('#carousel').delay( 5000, "myQ" );
	
	$('#carousel').queue("myQ",function(next) {		
		$("#carousel").jCarouselLite({
			btnNext: ".next",
			btnPrev: ".prev",
			mouseWheel: true,
			easing: "backinout",
			speed: 700,
			visible:3,
			scroll:3
		});
		$("#carousel .button").focus(function () {
			$(this).blur();
		});
		next();
	});

	$('#carousel').delay( 1000, "myQ" );
	
	$('#carousel').queue("myQ",function(next) {
		$('#carousel .button').show("clip", { direction: "vertical" }, 300);
		next();
	});	

	$('#carousel').dequeue("myQ");
});
  });
})(jQuery);

