﻿$(document).ready(function() {
	$('select').uniform();

	if($('#submenu').children().length<1){
		$('#submenu').css('display', 'none');
	}

	if ($("#dates_toggler").length>0) {
		$("#dates_toggler").click(function(){
			$('#selectDates').toggle('slide',{ direction: 'up' }, 300);
		});
	}
	
	if($('#welcome').length>0){
		$('#welcome span').css('display', 'block').click(function(){
			if($(this).hasClass('open')){
				$(this).removeClass('open').addClass('close');
				$('#welcome .slogan').animate({ left:930 }, 200, 'easeInOutQuad');
			} else {
				$(this).removeClass('close').addClass('open');
				$('#welcome .slogan').animate({ left:661 }, 200, 'easeInOutQuad');
			}
		});
		setTimeout('$(".slogan .open").click()',5000);
	}

	$('#welcome .slideshow').cycle({
		timeout: 8000,
		speed: 500,
		height: 367,
		fit: 1
	});
});

$(window).load(function() {
	$("div.ticker ul").liScroll();

	if ($("div.carousel ul").length>0) {
		$("div.carousel ul").carousel({ visible:6 });
	}

	$('.booking .rooms_available li.selected').css('position', 'relative').append('<span class="pointer">&nbsp;</span>');
});
