$(document).ready(function(){$('#aboutusbox').hide();$('#needhelpbox').hide();$('#signupbox').hide();$('#myaccountbox').hide();function match_topright_botright(fxd_box,move_box){var offset=fxd_box.offset();var link_width=fxd_box.outerWidth();var box_width=move_box.outerWidth();var hor_pos=offset.left+link_width-box_width;var link_height=fxd_box.outerHeight();var box_height=move_box.outerHeight();var vert_pos=offset.top+link_height;move_box.css({'left':hor_pos,'top':vert_pos});}
function addHoverHide(linkClass,layerId){var t;$("#"+linkClass).hover(function(){clearTimeout(t);var fxd_box=$('#'+linkClass);var move_box=$('#'+layerId);match_topright_botright(fxd_box,move_box);$("#"+layerId).css({'display':'block'});$('#'+linkClass).addClass('hover');},function(){t=setTimeout(function(){$("#"+layerId).css({'display':'none'});$('#'+linkClass).removeClass('hover');},50);});$("#"+layerId).hover(function(){clearTimeout(t);$("#"+layerId).css({'display':'block'});$('#'+linkClass).addClass('hover');},function(){t=setTimeout(function(){$("#"+layerId).css({'display':'none'});$('#'+linkClass).removeClass('hover');},50);});}
addHoverHide("needhelp","needhelpbox");addHoverHide("aboutdinair","aboutusbox");addHoverHide("signup","signupbox");addHoverHide("myaccount","myaccountbox");});
