function randImg() {
	
	var imageArray=new Array();
    
	// specify image filenames
    imageArray[1]="01.jpg";
    imageArray[2]="02.jpg";
    imageArray[3]="03.jpg";
	imageArray[4]="04.jpg";
    
	// create random number
    var i = Math.floor(Math.random()*imageArray.length);
    
    if (i==0) {
		i=1;
	}
	// write to document
    document.write('<img id="hPic" src="images/ka/'+imageArray[i]+'" />');
}

function cycleHeadBarText(i) {
	
	var textArray=new Array();
	i++
	
	// specify text
	textArray[1]="Human Resources Consulting";
	textArray[2]="Human Resources Advice and Direction";
	textArray[3]="Human Resources Policy, Practices and Systems";
	textArray[4]="Employment Documentation";
	textArray[5]="Restructures and Outplacement";
	textArray[6]="Conflict Resolution";
	textArray[7]="Performance Management";
	textArray[8]="Human Resources Consulting"
	
	document.getElementById("hBar").innerHTML = textArray[i];
    
	if (i<8) {
		self.setTimeout("cycleHeadBarText("+i+")", 7000);
	}
}

function insertMenu() {
	var menuText='';
	menuText += '<a href="index.html" id="mLink"><p id="mItem">About Us<\/p><\/a>';
	menuText += '<a href="services.html" id="mLink"><p id="mItem">Services<\/p><\/a>';
	menuText += '<a href="profile.html" id="mLink"><p id="mItem">Our Team<\/p><\/a>';
	menuText += '<a href="contact.html" id="mLink"><p id="mItem">Contact Us<\/p><\/a>';
	document.getElementById("menu").innerHTML = menuText;
}

function insertFootLinks() {
    var footLinks='';
    footLinks += '<a id="fLinks" href="index.html">About Us<\/a>';
    footLinks += '<a id="fLinks" href="services.html">Services<\/a>';
    footLinks += '<a id="fLinks" href="profile.html">Our Team<\/a>';
    footLinks += '<a id="fLinks" href="contact.html">Contact Us<\/a>';
	footLinks += '<span id="copyright">&#169; Wilde & Freeman Ltd <img src="images\/clogo.gif" alt="Wilde & Freeman small logo"/><\/span>';
    document.getElementById("footer").innerHTML = footLinks;
}

function doStuff() {
	insertMenu();
	insertFootLinks();
	cycleHeadBarText(0);
}
