function addSideNavitem(name, id) {
	if (id == null) {
		id = 'sidenav_static';
	}
	var ni = document.getElementById(id);

	var newheader = document.createElement('h1');
	var newlist = document.createElement('ul');
	
	itemid = name.replace(' ', '_');
	newheader.setAttribute('id',itemid);
	newlist.setAttribute('id', itemid+"_list");

	newheader.innerHTML = name;

	ni.appendChild(newheader);
	ni.appendChild(newlist);
	
	return newlist
};

function addSideMenuitem(name, dest, parent) {
	if (parent.replace) {
		parentid = parent.replace(' ', '_');
		var parent = document.getElementById(parentid+"_list");
	}
	
	var newlist = document.createElement('li');
	var newlink = document.createElement('a');
	var newul = document.createElement('ul');
	
	itemid = name.replace(' ', '_');
	newlink.setAttribute('href', dest);
	newlink.setAttribute('id', itemid);
	newlink.innerHTML = name;
	
	newul.setAttribute('id', itemid+'_list');
	
	newlist.appendChild(newlink);
	newlist.appendChild(newul);
	
	parent.appendChild(newlist);
	
	if (dest=="#") {
		newlink.setAttribute('href', 'javascript:toggleVisible("'+newul.id+'");');
	}
	
	$("#"+itemid+'_list').hide();
	
	return newul
};

function toggleVisible(id) {
	id = '#'+id
	if ($(id).is(":hidden")) {
		$(id).slideDown("slow");
	} else {
		$(id).slideUp("slow");
	}
};

function addItems() {
	nav = addSideNavitem("Main Menu");
		addSideMenuitem("Home", "index.html", nav);
		addSideMenuitem("Contact Us", "contactus.html", nav);
		ministry = addSideMenuitem("Ministries", "#", nav);
			addSideMenuitem("Living Waters", "livingwaters.html", ministry);
			addSideMenuitem("Build Baja", "buildbaja.html", ministry);
			addSideMenuitem("Outreaches", "outreaches.html", ministry);
			addSideMenuitem("La Paloma", "lapaloma.html", ministry);
			addSideMenuitem("La Huerta, Day-Care", "lahuerta.html", ministry);
			addSideMenuitem("Comfort Israel", "comfortisrael.html", ministry);
			addSideMenuitem("Prophetic Sword", "propheticsword.html", ministry);
			addSideMenuitem("Summer of Service", "summerofservice.html", ministry);
			addSideMenuitem("Breakfast Club", "breakfastclub.html", ministry);
			addSideMenuitem("Faith at Work", "faithatwork.html", ministry);
			addSideMenuitem("Casa De Oracion", "casadeoracion.html", ministry);
		about = addSideMenuitem("About Us", "#", nav);
			addSideMenuitem("Statement of Faith", "statementoffaith.html", about);
			addSideMenuitem("Missionaries", "missionaries.html", about);
			addSideMenuitem("Locations", "locations.html", about);
			addSideMenuitem("History of IDT", "historyofidt.html", about);
		
};

$(document).ready(function() {
	addItems();
	html = '<small>&copy; 2011 <a href="mailto:bpbeckwith@gmail.com">Brandon Beckwith</a> and IDT.<br/>';
	html = html+'Template design by <a href="http://templates.arcsin.se">Arcsin</a></small>';
	$('.footer').html(html);
	document.title = 'International Disciple Training';
});

