// JavaScript Document  
        $(document).ready(function(){
                $("#date").datepicker({dateFormat: 'yy-mm-dd', showOn: 'button', buttonImage: 'images/calendar.gif', buttonImageOnly: true});
        });
	$(document).ready(function(){	
		$("#slider").easySlider({
				prevText:'',
				nextText:'',
				speed:'2000',
				auto: true,
				continuous: true
		});
	});		
	
	function bookOnline(){
			var dateFrom = document.getElementById('date').value;
			window.open('https://www.thebookingbutton.com.au/public/reservation/PropertyOverview.do?channelCode=NELSONSLMDIRECT&dateFrom='+dateFrom,'mywindow','status=0,toolbar=0, scrollbars=1,width=800,height=600, resizable=1');
			
		
	}