function adjustTopHeight() {
	
	var height = 0;
	
	$(".top_column").each( function () {
		
		if ($(this).height() > height) {
			height = $(this).height();
			}
		});
		
	$(".top_column").each( function() {
		$(this).height(height);
		});
	}
	
	
function adjustBottomHeight() {
	
	var height = 0;
	
	$(".bottom_column").each( function () {
		
		if ($(this).height() > height) {
			height = $(this).height();
			}
		});
		
	$(".bottom_column").each( function() {
		$(this).height(height);
		});
	}
	
function doLightbox() {
	$("#snapshots a").lightBox();
	}
	
function checkIE() {
	
	}

$(document).ready(function() {
	adjustTopHeight();
	adjustBottomHeight();
	doLightbox();
	checkIE();
	});
