function be() {

$(document).ready(calcpos); $(window).resize(calcpos);

}

function calcpos() {

if (this.busy) {alert('reentry detected'); return;} this.busy=1;
$("#pc").css("left",Math.max(0,Math.floor(50*($("#pc").offsetParent().width())/100-($("#pc").width())*50/100+0.5+(0)))+"px");


$("#pc").css("top",Math.max(0,Math.floor(50*($(window).height())/100-($("#pc").height())*50/100+0.5+(-15)))+"px");


$("#id").css("left",Math.floor($("#pc").position().left+0*($("#pc").width())/100+0.5+(0))+"px");


$("#id").css("top",Math.max(0,Math.floor($("#pc").position().top+100*($("#pc").height())/100-($("#id").height())*100/100+0.5+(40)))+"px");


this.busy=0;

}
