function tweak_heights ()
{
	var box2;
	var box3;
	
	box1 = $("#box1").height();
	box2 = $("#box2").height();

	if (box1 > box2) {
		$("#box2").height(box1);
	} else {
		$("#box1").height(box2);
	}
}

$(document).ready(function () {
	EEO.setup_search();
	
	EEO.setup_image_nav();
	
	EEO.map_zoom += 2;
	
	EEO.add_map_control = false;
	
	tweak_heights();
	
	EEO.ie_fixes();
});

$(window).load(function () {
	EEO.emit_map();
	
	EEO.setup_map_links();

	EEO.track_GA();
});
