$(window).load(function(){

    //fix pngs
    $("#featuredProductImage img").supersleight();
    
    //postion the featured product image and text
    $("#featuredProductTextContainer").css("right", $("#featuredProductImage").width());

    var cells = $(".centralMenuCell");
    for (var i = 0; i < cells.length; i += 2) {
        var maxHeight = $(cells[i]).height();
        if (i + 1 < cells.length)
            maxHeight = Math.max(maxHeight, $(cells[i + 1]).height());
        $(cells[i]).height(maxHeight + 1);
        if (i + 1 < cells.length)
            $(cells[i + 1]).height(maxHeight + 1);
    }

});