function be() {

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

}

function calcpos() {

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


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


$("#if").height(Math.floor(100*($("#hf").height())/100+0.5+(0))+"px");


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


$("#ah").css("top",Math.max(0,Math.floor($("#hf").position().top+100*($("#hf").height())/100-($("#ah").height())*100/100+0.5+(60)))+"px");


this.busy=0;

}

