$(document).ready(function(){

	var tallest = 0;
	$("#picks").children(".pick").each(function(){
		
		if ($(this).height() > tallest) tallest = $(this).height();
		else $(this).height(tallest);
	
	});
	
	if ($("#orangeBar").height() > 10){
	
		$("#orangeBar").height($("h1").height())
	
	}

	if ($('.contentPic a').lightBox) $('.contentPic a').lightBox();

});
