﻿/*
	Kakanui JS funtionality
	Requires JQuery library v1.3.1
*/

$(document).ready(function(){
	
	//Add image fading for main banner
	$("#htmBranding ul").innerfade({
		speed: 1000,
		timeout: 5000,
		type: 'sequence',
		containerheight: '348px'
	});
	
	$.fn.colorbox.settings.transition = "fade";
	$.fn.colorbox.settings.bgOpacity = "0.9";
	$.fn.colorbox.settings.contentCurrent = "image {current} of {total}";
	$(".clsPhotoGallery a").colorbox();
	
	
	//Hover for booking button
	/*
	$(".clsMakeBooking a").hover(
		function () {
			$(this).css("background-position", "0px -152px");
		},
		function () {
			$(this).css("background-position", "0px 0px");
		}
	);
	*/
	
	
});
