var hs;
LoadJs();

$(document).ready(function(){
						   	
	hs.graphicsDir = 'highslide/graphics/';
	hs.outlineType = 'rounded-white';
	hs.wrapperClassName = 'draggable-header no-footer';
	hs.allowSizeReduction = false;
	hs.dimmingOpacity = 0.75;
	hs.height = 500;
	hs.width = 500;

	$('#cycl').cycle({
		fx: 'fade',
		speed:  'slow',
        timeout: 6000
	});	
	
	
	if( $('#contactForm') ) {
		$("#contactForm").validate();
	}
	
});

function LoadJs() {
document.write('<script type="text/javascript" src="js/jquery.validate.js"></script>');
document.write('<script type="text/javascript" src="js/jquery.cycle.js"></script>');
}

function activateBooking(theLink) {
selected_val = $('select#selected_room').val();
theLink.href = 'beds_available.php?RoomTypeID='+selected_val;
return hs.htmlExpand(theLink, { headingText: 'MAKE YOUR BOOKING', objectType: 'iframe', width: 820, align: 'center' })
}