$(document).ready(function() {
	//Homepage carousel
	$('#carousel').jcarousel({ scroll: 1 });
	//Inner pages carousel
	$('#flat').jcarousel({ scroll: 1 });
    $('#hotel').jcarousel({ scroll: 1 });
    $('#cafe').jcarousel({ scroll: 1 });
    $('#sauna').jcarousel({ scroll: 1 });
    $('#sport').jcarousel({ scroll: 1 });
    $('#showplace').jcarousel({ scroll: 1 });
    //Datepickers
    $('#date-in').datepicker({ showOn: 'both', buttonText: '', });
	$('#date-out').datepicker({ showOn: 'both', buttonText: '', });
	$('#ui-datepicker-div').hide();
	//Smooth scroll
	$('.reserve').localScroll();
	//Slider
	$("#slider-range").slider({
		range: true,
		min: 500,
		max: 15000,
		step: 500,
		values: [500, 15000],
		slide: function( event, ui ) {
			$("#amount").val(ui.values[0]);
			$("#amount2").val(ui.values[1]);
		}
	});
	$("#amount").val($("#slider-range").slider("values", 0));
	$("#amount2").val($("#slider-range").slider("values", 1));
	//Tabs
	$("#tabs").tabs();
	//Gallery
	$('#gallery').kGallery();
	//StickyFloat
	if($('#call').length > 0) {
		$('#call').stickyfloat({ duration: 300 });
		$('span.stick').toggle(function(){
			$('#call').addClass('stick');
			$(this).text('Открепить');
		},
		function() {
			$('#call').removeClass('stick');
			$(this).text('Закрепить');
		});
	}
});


