$(document).ready(function() {
	
	//this just resizes the columns so they are all the same
	var ht1 = $(".column:first").height();
	var ht2 = $(".column:last").height();
	var ht3 = $(".main").height();
	var ht=0;
	
	if(ht1 > ht2 && ht1 > ht3){ ht = ht1 - 60; }
	else if(ht2 > ht1 && ht2 > ht3){ ht = ht2 - 60; }
	else { ht = ht3 - 60; }
		
	$(".column_content:first").height(ht);
	$(".main_content").height(ht);
	$(".column_content:last").height(ht);
	
	$("a[rel='gallery']").colorbox({transition:"fade"});
	
});
