// JavaScript Document

function go(){

currentPage = location.href;
title="";

//alert("title is " + title);

switch(currentPage){
	case "http://tapiocalounge.org/?page_id=30":
		title="Mailing List";
		break;
	case "http://tapiocalounge.org":
		title="Home";
		break;
	case "http://tapiocalounge.org/?page_id=38":
		title="About Us";
		break;
	case "http://tapiocalounge.org/?page_id=34":
		title="Blog";
		break;
	case "http://tapiocalounge.org/?page_id=36":
		title="Menu";
		break;
	case "http://tapiocalounge.org/?page_id=40":
		title="Contact";
		break;
	default:
		title="Home";
}



//alert("title is "+ title);

document.getElementById('navpos').innerHTML=title;

}


var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'Tapiocal Lounge Events Calendar','height=800,width=600');
	if (window.focus) {newwindow.focus()}
}