﻿/* 
height of images in IE6 does not properly inherit from parent when the height is 100%
*/

$(function() {
    if (!$.browser.msie || $.browser.version.substr(0, 1) >= 7)
        return;

    $("#Default #DefaultWrapper").each(function() {
        var height = $(".DefaultBody", $(this)).height();
        $(".DefaultBackground", $(this)).height(height);
    });

});