/************************************************************
blogmnu.js 

The main blog menu functions
*************************************************************/

/** idiom to include the ctcutils **/
document.write("<script src=\"" + jspath +"js/ctcutils.js\" type=\"text/javascript\"></script>");

function ctctitle(title) {
  jtitle(title, "martyns blog", "as I see it", "mgc@cutthecrap.biz");
}

function blogmnu() {
	startMenu("My Blog");
		jh1("Blogging", "./index.html");
		
		jsubheader("Memes");
		jh1("What's a meme?", "memes/meme.html");
		inset();
		jsubheader("Economics");
		jh1("Housing", "memes/housing-loan.html");
		jh1("Taxation", "memes/taxation.html");
		jh1("Equities", "memes/equities.html");
		jsubheader("Self Help");
		jh1("Depression", "memes/psychology.html");
		jh1("Atkins", "memes/atkins.html");
		outset();
		
		jsubheader("Technology Watch");
		jh1("Computer Industry", "./tech/computers.html");
		jh1("Nanotechnology", "./tech/nano.html");
		jh1("Energy storage", "./tech/energystorage.html");
		jh1("Solid state storage", "./tech/nonvolatile.html");

		jsubheader("Current Affairs");
		jh1("P N A C...", "./pnac/index.html");
		jh1("Dr Kelly", "./affairs/kelly.html");
		
		jsubheader("Scams");
		jh1("Data Protection", "./scams/dppc.html");
		
	endMenu();
}

function mememnu() {
	addHome("My Blog", "index.html");

	startMenu("Memes");
		jh1("What's a meme?", "memes/meme.html");
		jsubheader("Economics");
		jh1("Housing", "memes/housing-loan.html");
		jh1("Taxation", "memes/taxation.html");
		jh1("Equities", "memes/equities.html");
		jsubheader("Self Help");
		jh1("Depression", "memes/psychology.html");
	endMenu();
}

function pnacmenu() {
	addHome("My Blog", "index.html");

	startMenu("PNAC");
		jh1("Overview", "pnac/index.html");
		jh1("Members", "pnac/members.html");
		jsubheader("Links");
		jh1("Sources", "pnac/sources.html");
		jh1("Comments", "pnac/comments.html");
		jsubheader("Specifics");
		jh1("United Nations", "pnac/un.html");
		jh1("Iraq - Gulf War II", "pnac/war.html");
	endMenu();
}
