function setContainerHeight(container){
    var containerSelector = $(container); 
    var height = $(container).height();
    var modulo = height % 13;
    if(modulo != 0){
        var newHeight = height + 13 - modulo;
    }else{
        var newHeight = height;
    }
    $(container).css("height",newHeight);
}

$(document).ready(function() {
    
    if($.browser.name == "msie" && $.browser.versionNumber < 7){
        DD_belatedPNG.fix('.ddd img,#header h1 a,#header .logos img,.submenu, .content, .orange-stripe, .footer-stripe, .yellow-stripe .left, .yellow-stripe .right, .ibiza, .black-stripe .left');
    }
    
    setContainerHeight(".info-panel");
    setContainerHeight(".orange-stripe");
    setContainerHeight(".footer-stripe");
    setContainerHeight(".content-top-part");
    
    
});  
