// JavaScript Document
function doTabs(el) 
{
	switch (el)
	{	case "tabONE":
			document.tab1button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab1-button-on.png";
			document.tab2button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab2-button.gif";
			document.tab3button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab3-button.gif";
			document.tab4button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab4-button.gif";
			document.tab5button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab5-button.gif";
			document.getElementById("tabTWO").style.display="none";
			document.getElementById("tabTHREE").style.display="none";
			document.getElementById("tabFOUR").style.display="none";
			document.getElementById("tabFIVE").style.display="none";
			document.getElementById("tabONE").style.display="block";
			break;
		case "tabTWO":
			document.tab2button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab2-button-on.png";
			document.tab1button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab1-button.gif";
			document.tab3button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab3-button.gif";
			document.tab4button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab4-button.gif";
			document.tab5button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab5-button.gif";
			document.getElementById("tabONE").style.display="none";
			document.getElementById("tabTHREE").style.display="none";
			document.getElementById("tabFOUR").style.display="none";
			document.getElementById("tabFIVE").style.display="none";
			document.getElementById("tabTWO").style.display="block";
			break;
		case "tabTHREE":
			document.tab3button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab3-button-on.png";
			document.tab1button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab1-button.gif";
			document.tab2button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab2-button.gif";
			document.tab4button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab4-button.gif";
			document.tab5button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab5-button.gif";
			document.getElementById("tabONE").style.display="none";
			document.getElementById("tabTWO").style.display="none";
			document.getElementById("tabFOUR").style.display="none";
			document.getElementById("tabFIVE").style.display="none";
			document.getElementById("tabTHREE").style.display="block";
			break;
		case "tabFOUR":
			document.tab4button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab4-button-on.png";
			document.tab1button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab1-button.gif";
			document.tab2button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab2-button.gif";
			document.tab3button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab3-button.gif";
			document.tab5button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab5-button.gif";
			document.getElementById("tabONE").style.display="none";
			document.getElementById("tabTWO").style.display="none";
			document.getElementById("tabTHREE").style.display="none";
			document.getElementById("tabFIVE").style.display="none";
			document.getElementById("tabFOUR").style.display="block";
			break;
		case "tabFIVE":
			document.tab5button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab5-button-on.png";
			document.tab1button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab1-button.gif";
			document.tab2button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab2-button.gif";
			document.tab3button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab3-button.gif";
			document.tab4button.src="http://www.alwayslivenow.com/wp-content/themes/default/images/tab4-button.gif";
			document.getElementById("tabONE").style.display="none";
			document.getElementById("tabTWO").style.display="none";
			document.getElementById("tabTHREE").style.display="none";
			document.getElementById("tabFOUR").style.display="none";
			document.getElementById("tabFIVE").style.display="block";
			break;
	}
}