/*
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#eventsSearch').append("<div class='clear'></div>");
	$('#eventsSearch ul > li:last').css("background-image", "none");
	
	equalHeight($(".filter"));
	//$('li.filter div.updateListing').css("vertical-align", "bottom");
	
	$('.eventTable tr td[colspan=4]').css("border-bottom", 0);
	$('.eventTable tr:last td').css("border-bottom", 0);
	
	$(".eventTable tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});
});

