function be() {

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

}

function calcpos() {

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


$("#nd").height(Math.floor(100*($("#gf").height())/100+0.5+(-100))+"px");


$("#ff").height(Math.floor(100*($("#gf").height())/100+0.5+(50))+"px");


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


$("#pf").css("top",Math.max(0,Math.floor($("#gf").position().top+100*($("#gf").height())/100-($("#pf").height())*100/100+0.5+(65)))+"px");


this.busy=0;

}
