var LiveChat = {
	switchChat : function(chatLayer, nameLayer, hotelmapLayer, image_path){
		if(chatLayer.style.backgroundImage == 'url(' + image_path + '/LTtemplates/new_site_design/images/live_chat_off.gif)'){
			chatLayer.style.backgroundImage = 'url(' + image_path + '/LTtemplates/new_site_design/images/live_chat_on.gif)';
			chatLayer.style.height = '54px'	;
			nameLayer.style.display = 'block';
			hotelmapLayer.style.display = 'block';
		} else {
			chatLayer.style.backgroundImage = 'url(' + image_path + '/LTtemplates/new_site_design/images/live_chat_off.gif)';
			chatLayer.style.height = '56px';
			nameLayer.style.display = 'none';
			hotelmapLayer.style.display = 'none';
		}
	}
};

var RecentlyViewed = {
	switchView : function(recentLayer, favouriteLayer, tabName){
		if(tabName == 'recent' && recentLayer.style.display == 'none'){
			recentLayer.style.display = 'block';
			favouriteLayer.style.display = 'none';
		}
		
		if(tabName == 'favourite' && favouriteLayer.style.display == 'none'){
			recentLayer.style.display = 'none';
			favouriteLayer.style.display = 'block';
		}
	},
	hotelBookings : function(wrapper, imageFile, imagePath){
		if(wrapper.style.display == 'none'){
			wrapper.style.display = 'block';
			imageFile.src = imagePath + "/LTtemplates/new_site_design/images/small_down_arrow.gif";
		} else {
			wrapper.style.display = 'none';
			imageFile.src = imagePath + "/LTtemplates/new_site_design/images/large_down_arrow.gif";
		}
	}
}