/* so that the menu color stays depending on what page youre on
position: what number position starting from the left
0 - Home
1 - Company
2 - Sales
3 - Service
4 - Supplies
5 - Contact

call this function on the body load depending on what page you are on

*/
function selectMenuItem(position){
	var anchorTags = document.getElementsByTagName('a');
	var menuTags =[];

	//create an array of just the a's with className "notselected"
	for(var i = 0; i < anchorTags.length; i++){
		//alert(anchorTags[i].innerHTML);
		if(anchorTags[i].className == "notselected"){
			menuTags.push(anchorTags[i]);
		}
	}
	
	menuTags[position].className = "selected";
	
	//$('.menu .left').eq(position).children('a').removeClass('notselected').addClass('selected');
}