/**
 * @author Administrator
 */
function initdiv(){
    var leftHeight = dojo.byId('siteinfo').offsetHeight;
    var rightHeight = dojo.byId('rightCon').offsetHeight;
    var maxHeight = Math.max(leftHeight, rightHeight);
    dojo.byId('siteinfo').style.height = maxHeight + 'px';
    dojo.byId('rightCon').style.height = maxHeight + 'px';
}

dojo.addOnLoad(function(){
    initdiv();
    dojo.query(".avideo").onmouseover(function(e){
        this.style.backgroundColor = '#FFFFD0';
    });
    dojo.query(".avideo").onmouseout(function(e){
        this.style.backgroundColor = '#FFF';
    });
});