function dom_init() {

  $('.triplet a').lightBox();

boxheight = 0;
$('.startbox').each(function(){
	if ($(this).height() > boxheight) {
		boxheight = $(this).height();
	}
});
$('.startbox').height(boxheight);

}
