// JavaScript Document

	/*function main_menu_change($id, $link, $image)	{
		document.getElementById($id).style.backgroundImage = "url(images/general/"+$image+")";
		document.getElementById($link).style.color = "#ffffff";
	}
	
	function main_menu_changebk($id, $link, $image)	{
		document.getElementById($id).style.backgroundImage = "url(images/general/"+$image+")";
		document.getElementById($link).style.color = "#226AA5";
	}*/
	
	function main_menu_change($id, $link, $image)	{
		document.getElementById($id).style.backgroundImage = "url(images/"+$image+")";
		document.getElementById($id).style.backgroundColor = "#FFFFFF";
		document.getElementById($link).style.color = "#244E76";
	}
	
	function main_menu_changebk($id, $link, $image)	{
		document.getElementById($id).style.backgroundImage = "url(images/"+$image+")";
		document.getElementById($id).style.backgroundColor = "#244E76";
		document.getElementById($link).style.color = "#FFFFFF";
	}
	
	function sub_menu_change($id, $link, $image)	{
		document.getElementById($id).style.backgroundImage = "url(images/general/"+$image+")";
		document.getElementById($link).style.color = "#135286";
	}
	
	function sub_menu_changebk($id, $link, $image)	{
		document.getElementById($id).style.backgroundImage = "url(images/general/"+$image+")";
		document.getElementById($link).style.color = "#ffffff";
	}