//Custom function to make all divs same size
$(document).ready(function(){
    var columnCount = $('div[@id$="Grow"]').length;
    var tallestCol = 0;

    for(var i=0; i<columnCount; i++)
    {
        var divUsed =$('div[@id$="Grow"]')[i];
        var divHeight = jQuery(divUsed).height();
        
        if(divHeight != "NaN")
        {
            if(divHeight > tallestCol)
            {
                tallestCol = divHeight;
            }
        }
    }
    jQuery($('div[@id$="Grow"]')).css("height",tallestCol);
});

$('img[@src$=.png]').ifixpng();
