function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
    
    group.parent().height(tallest + 1);
}

$(document).ready(function() {

	$.ifixpng('/gfx/x.gif');
 	$('img[src$=.png],#title h1, #title h2, #header h1').ifixpng();

	$('#photocontainer').cycle({
		pager:  '#thumb',
    	timeout: 0, 
    	next:   '#next', 
    	prev:   '#prev' ,
		pagerAnchorBuilder: function(idx, slide) {
			return '<li><img src="' + slide.src.replace(".jpg","_th2.jpg") + '" width="94" height="62" border="0" alt="" /></li>';
		},
		after:     function() {
            $('#caption').html(this.alt);
		}
	});

	equalHeight($(".col"));

});


