/*
Ye ol lodging JS file
/**/
function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}

$(document).ready(function(){
	$('form#lodgingSearch').append("<div class='clear'></div>");
	
	$('#lodgingSearch ul > li:last').css("background-image", "none");
	
	$('#lodgingSearch ul > li#location').find("div.title:last").prepend("<img src='images/icon_video.gif' />&nbsp;");
	
	$('#lodgingSearch ul > li#location').find("div.title:last").prepend("<br />");
	
	$('#updateListing').wrap("<div align='center'></div>");
	
	equalHeight($(".filter"));
});

