var pages = {home:"Home",menus:"Menus",people:"People",photos:"Photos", map:"Directions"};
//var peeps = {info:0, Monica: 1, Sharlena: 2, Kristen: 3 };
function setPage(page){
	if (page == "") return;
	$("#head"+page).addClass("selected");
	$("body").addClass("body"+page);
	if (typeof(ie6) != "undefined") $("body").addClass("ie6");
	if (typeof(ie) != "undefined") $("body").addClass("ie");
}

function talkWhich(i){
	var q="to";
	var x=[
		{ who: "info", where: "nickeldiner" },
		{ who: "5cdiner", where: "gmail" }
	];
	var z=x[i].who+"@"+x[i].where+"."+"com";
	return "<a href=\"mail"+q+":"+z+"\">"+z+"</a>"
	// <a href="mailto:5cdiner@gmail.com">5cdiner@gmail.com</a>
}

function ajaxTweets(){
	//  "js/twitter.php?user=rodi01&count=24&client=false&format=json", 
	$.getJSON( "js/twitter.php?user=5cdiner&count=5&client=false&format=json",
		function(data){
			var s="";
			$.each(data.items, 
				function(i,item){
					s += "<li>"+item.text+" <a class=\"postTime\" href=\""+item.url+"\">"+item.time+"</a></li>";
				}
			);
			$("#twitFeed").html(s);
		}
	);
}

function everyPage(page){
	$("span.talkInfo").html(talkWhich(0));
	if (page) setPage(page);
}
