	    	$('#CheckIn').datepicker({ showOtherMonths: true, showOn: 'button', buttonImage: '../style/icon-calendar.png', buttonImageOnly: true });
	    	$('#CheckOut').datepicker({ showOtherMonths: true, showOn: 'button', buttonImage: '../style/icon-calendar.png', buttonImageOnly: true });


			function onYouTubePlayerReady(playerId) {
				ytplayer = document.getElementById("video_overlay");
				ytplayer.setVolume(0);
			} 

	  	var pos = 0, spd = 0, timer;
	  	function anim() { pos += spd; $('#scroll').scrollTop(pos); pos = $('#scroll').scrollTop(); timer = setTimeout("anim()", 50); }
	  	$('#scroll-up').mouseover(function () { spd = -3; }).mouseout(function () { spd = 0; });
	  	$('#scroll-down').mouseover(function () { spd = 3; }).mouseout(function () { spd = 0; });
	  	anim();

	  	$(document).ready(function () { $('.scroll-pane').jScrollPane(); });
