/* pop the menu into abs pos with zindex so the person image does not block clicking the menu */

function sizing1() {
	if($('#menu-anchor').size() != 0){
		var o = $('#menu-anchor').offset();
		var l = o.left;
		var t = o.top;
		$('#menu').css({
							position:'absolute',
							left:l+'px',
							top:t+'px',
							zIndex:'100'
							}).appendTo('body');
	}
}
function sizing2() {
	if($('#menu-anchor').size() != 0){
		var o = $('#menu-anchor').offset();
		var l = o.left;
		var t = o.top;
		$('#menu').css({
							position:'absolute',
							left:l+'px',
							top:t+'px',
							zIndex:'100'
							});
	}
}
$(document).ready(sizing1);
$(window).resize(sizing2);

