var  lightbox_height=0, lightbox_width=0,light_boxclass='class',light_boxid='id',top=0,left=0;$(document).ready(function(){$("body").append("<div id='lightbox'></div>");var lightbox = 'div#lightbox';lightbox_width = $(document).width();lightbox_height = $(document).height();left = (lightbox_width/2)-232; top = (lightbox_height/2)-110;  $("div.rbroundbox").css({'left':'-'+2*lightbox_width});$("div#information button").live("click",function(){light_boxid = $(this).attr('id');light_boxclass = $(this).attr('class');var data = $("div.excerpt div#post"+light_boxid+" div#"+light_boxclass).html();$("div.rbroundbox").html(data);     $(lightbox).css({'height':lightbox_height, 'width':lightbox_width}); $(lightbox).stop().animate({'opacity':'.9'},600,function(){ }); $("div.rbroundbox").css({'display':'block'}); $("div.rbroundbox").stop().animate({'left':left},600); });$(lightbox).click(function(){ $("div.rbroundbox").stop().animate({'left':'-'+2*lightbox_width},600);$(lightbox).stop().animate({'opacity':'0'},600,function(){$(lightbox).css({'height':'0' , 'width':'0' });});});});
