var home_lodge_links = {
	'#home_lodgings .lodge1' : function(element){
		element.onclick = function(){
			window.location.href = "house_in_the_trees.htm";
		}
	},
	'#home_lodgings .lodge2' : function(element){
		element.onclick = function(){
			window.location.href = "cottage.htm";
		}
	},
	'#home_lodgings .lodge3' : function(element){
		element.onclick = function(){
			window.location.href = "studio.htm";
		}
	},
	'#home_lodgings .lodge4' : function(element){
		element.onclick = function(){
			window.location.href = "cabin.htm";
		}
	}
};

Behaviour.register(home_lodge_links);
