/******************************************************************
Author:		Andy Jones
			www.aj-web-design.com (hosted at x10hosting.com)

GROK THIS:	The AJ Web Design Page Elements script:
/******************************************************************/

var onoff1	= "";
var onoff2	= "";
var onoff3	= "";
var onoff4	= "";
var onoff5	= "";
var img		= "";
var title	= document.title;
var buttons = "";

if (title.indexOf("Home") != -1) {
   onoff1 = "On";
   img = "AJWebCollage";
} else if (title.indexOf("Philosophy") != -1) {
   onoff2 = "On";
   img = "PageLeaves";
} else if (title.indexOf("Work") != -1) {
   onoff3 = "On";
   img = "PageGraphTriangle";
} else if (title.indexOf("Costs") != -1) {
   onoff4 = "On";
   img = "PageSpheres";
} else if (title.indexOf("Contact") != -1) {
   onoff5 = "On";
   img = "PageTubes";
}

//== Page Buttons =======================;
function writeButtons() {
	buttons  = "<nobr><a href=\"index.html\" OnClick=\"document.Btn1.src=\'images/AJButtonOn.gif\'\">";
	buttons += "<IMG SRC=\"images/AJButton" + onoff1 + ".gif\" BORDER=0 NAME=Btn1><IMG SRC=\"images/AJLinksHome" + onoff1 + ".gif\" BORDER=0></a></nobr>";
	buttons += "<BR>";
	buttons += "<nobr><a href=\"Philosophy.html\" OnClick=\"document.Btn2.src=\'images/AJButtonOn.gif\'\">";
	buttons += "<IMG SRC=\"images/AJButton" + onoff2 + ".gif\" BORDER=0 NAME=Btn2><IMG SRC=\"images/AJLinksPhilosophy" + onoff2 + ".gif\" BORDER=0></a></nobr>";
	buttons += "<BR>";
	buttons += "<nobr><a href=\"Work.html\" OnClick=\"document.Btn3.src=\'images/AJButtonOn.gif\'\">";
	buttons += "<IMG SRC=\"images/AJButton" + onoff3 + ".gif\" BORDER=0 NAME=Btn3><IMG SRC=\"images/AJLinksWork" + onoff3 + ".gif\" BORDER=0></a></nobr>";
	buttons += "<BR>";
	buttons += "<nobr><a href=\"Costs.html\" OnClick=\"document.Btn4.src=\'images/AJButtonOn.gif\'\">";
	buttons += "<IMG SRC=\"images/AJButton" + onoff4 + ".gif\" BORDER=0 NAME=Btn4><IMG SRC=\"images/AJLinksCosts" + onoff4 + ".gif\" BORDER=0></a></nobr>";
	buttons += "<BR>";
	buttons += "<nobr><a href=\"Contact.php\" OnClick=\"document.Btn5.src=\'images/AJButtonOn.gif\'\">";
	buttons += "<IMG SRC=\"images/AJButton" + onoff5 + ".gif\" BORDER=0 NAME=Btn5><IMG SRC=\"images/AJLinksContactMe" + onoff5 + ".gif\" BORDER=0></a></nobr>";
	
	document.write(buttons);
}

//== Page Image =======================;
function writeImg() {
	if (img == "AJWebCollage") {
	   image = "<img src=\"images/" + img + ".gif\" border=\"0\" align=\"left\">";
	} else {
	   image = "<img src=\"images/" + img + ".gif\" width=150 height=150 border=\"0\" align=\"left\">";
	}

	document.write(image);
}
