function quickNav_change(buttonid, dropid)
{
	var button = document.getElementById(buttonid);
	var drop = document.getElementById(dropid);
	if(button != null && drop != null)
	{
		button.href = drop.value;
	}
}