window.addEvent('domready', function() {
$('contents').setStyle('min-height', $('sidebar').getStyle('height'));
    var Shadow = new Element('div', {
        'id': 'shadow',
        'styles': {
        'display': 'none',
        'background-color': 'black',
        'position': 'fixed',
        'opacity': 0,
        'z-index': 1,
        'top': 0,
        'left': 0,
        'width': "100%",
        'height': "100%"
        }
    });
    var Resizer = new Element('div',{
        'class': 'resizer',
        'events': {
            'click': function() {
                if ($('code').getStyle('width').toInt() == 516) {
                    $('code').tween('width', 796);
                    $('shadow').fade(0.5);
                    $('shadow').setStyle('display','block');
                }else{
                    $('code').tween('width', 516);
                    $('shadow').fade(0);
                    $('shadow').setStyle('display','none');
                }
            }
        }
    });
                
    Shadow.inject($('codepaster'));
    Resizer.inject($('contents'));
});
