
//////////////////////////////////////////////////////////////////
// Change background on menu button if clicked
//////////////////////////////////////////////////////////////////
//function menuclick()
//{
//	//get all the button elements
//	var aryBtn = document.getElementsByTagName('button');
//
//	//get all the h4 elements
//	var aryPage = document.getElementsByTagName('h4');
//
//	//loop through all the h4 elements
//	var intAryPageLength = aryPage.length;
//	for(var i=0; i<intAryPageLength; i++)
//	{
//		//loop through all the button elements
//		var intAryBtnLength = aryBtn.length;
//		for(var j=0; j<intAryBtnLength; j++)
//		{
//			//if this btn controls the current page then change the background to active
//			if(aryPage[i].id == aryBtn[j].id)
//			{
//				aryBtn[j].className = 'menu_btn_clicked';
//			}
//
//			//if the btn does not control this page then change the background to inactive
//			else if(aryPage[i].id != aryBtn[j].id)
//			{
//				aryBtn[j].className = 'menu_btn';
//			}
//		}
//	}
//}

$(document).ready
(
	function()
	{
		$("#" + $(".page_id").attr("id") + "_btn").toggleClass("menu_btn_clicked");
	}
);