/* Global Nav Jump & Styling Code */
function styleIt(dropdown){
	if(document.getElementById(dropdown).value == "site"){
		document.getElementById(dropdown).style.color = "#ff6600";
	}else{
		document.getElementById(dropdown).style.color = "#000000";
	}
}

function jumpToSubmit(dropdown){
	var target = document.getElementById(dropdown).value;
	
	switch(target){
		case "tips":
			window.location.href = "/tips/tip_submit.jhtml";
			break;
		case "lists":
			window.location.href = "/lists/list_submit.jhtml";
			break;
		case "goods":
			window.location.href = "/goods/good_submit.jhtml";
			break;
		case "eat":
			window.location.href = "/dishes/dish_submit.jhtml";
			break;
		case "do":
			window.location.href = "/do/do_submit.jhtml";
			break;
		case "spill":
			window.location.href = "/spills/spill_submit.jhtml";
			break;
	}
}