$(function(){
	var menuWindowName = "haart_menu";
	var menuWindow ;
	var namae= this.location.href.split("#")[0];
	var test = namae.substring(namae.lastIndexOf('/',namae.length)+1,namae.lastIndexOf('.',namae.length));
	var name = test.split("_apndng")[0];
	var fullpath = new Image();
	fullpath.src = name +"_menu.htm";
	menuWindow =window.open(fullpath.src,menuWindowName,"width=200,height=600,scrollbars=yes,resizable=yes");
	$("a[href$=menu.htm]")
		.click(function(){
			if(menuWindow.closed){
				menuWindow = window.open("",menuWindowName,"width=200,height=600,scrollbars=yes");
				menuWindow.location.href = fullpath.src;
			}else{
				menuWindow.location.href = fullpath.src;
			}
			return false;
			});
});
