// JavaScript Document

function userMenu(numberUm) {
	if(numberUm == 1) { window.location = "?action=profile"; }
	if(numberUm == 2) { window.location = "?action=account"; }
	if(numberUm == 3) { window.location = "?action=gallery"; }
	if(numberUm == 4) { window.location = "?action=messages"; }
	if(numberUm == 5) { window.location = "?action=msites"; }
	if(numberUm == 6) { window.location = "?action=logout"; }
}

