google.load("jquery", "1");

function OnLoad(){
    $(function(){
		$('#flyout').menu({ content: $('#flyout').next().html(), flyOut: true, width: 244, crossSpeed: 1000, posX: 'right', posY: 'bottom' });
		allUIMenus[0].chooseItem = function(item){
										allUIMenus[0].kill();
										var newWindow = window.open($(item).attr('href'), '_blank');
										newWindow.focus();
									};
    });
}
google.setOnLoadCallback(OnLoad);
