function setCurrentPage(pageTitle){

	/* OLD CODE USES ID
	var thePageName = '';

	switch(pageid)
	{
		case 2: thePageName = 'about';break;
		case 11: thePageName = 'blog';break;
		case 35: thePageName = 'contactus';break;
		case 429: thePageName = 'events';break;
		default: thePageName = '';break;
	}
	
	*/
	
	var theWidget = document.getElementById(pageTitle);

	if(theWidget != null)
	{
		theWidget.className = 'widgethack-current';
	}

}