$(document).ready(function(){
/*
    $('a[rel="img"]').bind('click',function() {
        var img = document.createElement('img');
        var div = document.createElement('div');
        img.src = this.href;
        $(img).css({border:'3px solid white'});
        $(div).css({width:'800px',
                    height:'800px',
                    textAlign:'center',
                    position: 'fixed',
                    cursor:'pointer',
                    left:'50%',
                    top:'50%',
                    marginLeft:'-400px',
                    marginTop:'-400px',
                    border:'1px solid red',
                    marginBottom:'20px'});
        $(div).append(img);
        $(this).before(div);
        $(div).bind('click',function() {
            $(this).remove();
        });
        return false;
    });
*/
});
