function CloneHeight (sourceObject, target) {
    
    var sourceHeight = $(sourceObject).outerHeight();
    $(target).height(sourceHeight);
    
    $(window).bind("resize", function() {
        
        var sourceHeight = $(sourceObject).outerHeight();
        $(target).height(sourceHeight);
        
    });
    
}

