function fixLeftNavHeight(newHeight){//makes the left nav and content sections equal heights
	var navHeight = $("div.leftNav").height();//height of the left nav
	if (navHeight <= newHeight){//make 'em equal
	   $("div.leftNav").css("height", newHeight+"px");
	}
}
$(function(){//on document ready
	fixLeftNavHeight($("div.contentWhiteBG").height());
	$('div#storeTour a.storeTourPic').lightBox({fixedNavigation:true});
});
