
function subnav(id) {
	for (x=1; x<=5; x++) {
		//$("#subnav"+x).hide();
	}
	if (id) {
		$("#subnav"+id).css("background-color","#838582");
		$("#subnav"+id).fadeIn(250);
	}
}
