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

$(document).ready(function() {

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

//	equalHeight($("div.cols div.eq"));

});


