// JavaScript Document

function setLocation(url)
{
	window.location.href = url;
}

function expendSubMenu(targetId)
{
	/*if($(targetId))
	{
		if($(targetId).style.display == "none")
		{
			$(targetId).style.display = "block";
		}else{
			$(targetId).style.display = "none";
		}
	}*/
	$("#"+targetId+"").slideToggle(600);
}
