$(document).ready(function() {

//Popup
	$('#closeButton').click(function() {
		$('.carousel2').hide('fast', function() {
			// Animation complete.
		});
	});
	
//Popup Carousel
	$(function() {
    		$(".carousel2").jCarouselLite({
			btnNext: ".nextImage2",
			btnPrev: ".previous2",
			visible: 1,
     			auto: 5000,
			speed: 400
   		});
	});

});
