function be() {

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

}

function calcpos() {

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


$("#hl").css("left",Math.floor($("#mk").position().left+0*($("#mk").width())/100+0.5+(-154))+"px");


$("#hl").css("top",Math.floor($("#mk").position().top+100*($("#mk").height())/100+0.5+(170))+"px");


this.busy=0;

}
