jQuery(document).ready(function($) {
	
//Carousel
	$(function() {
    		$(".carousel").jCarouselLite({
        		btnNext: ".nextImage",
        		btnPrev: ".previous",
        		visible: 6
    		});
	});
	
//Hover Text
	$(".hoverText").hide();

	$('.roomsHover').hover(
                function(){$(this).find('div.hoverText:hidden').fadeIn(500);},
                function(){$(this).find('div.hoverText:visible').fadeOut(500);}
        );

//Gallery
	$("#galleria").galleria({
		autoplay: 4000,
		transition: 'fade',
		transitionSpeed: 1500,
		thumbnails: false,
		showCounter: false,
		showInfo: false
	});
	
//Popup
	$('#closeButton').click(function() {
		$('.carousel2').hide('fast', function() {
			// Animation complete.
		});
	});
	
//Popup Carousel
	$(function() {
    		$(".carousel2").jCarouselLite({
			btnNext: ".nextImage2",
			btnPrev: ".previous2",
			visible: 1,
     			auto: 8000,
			speed: 1000
   		});
	});

});
