function tab()
{
var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
//alert(sPage);
//alert(sPath);

switch (sPage)
	{
	case 'ELTTProgram.asp':
		document.write ('<img src="../images/tab.gif" style="position:absolute; top:147px; left:306px;">');
		break;
	case 'ELTTOpportunities.asp':
		document.write ('<img src="../images/tab.gif" style="position:absolute; top:147px; left:470px;">');
		break;
	case 'ELTTResources.asp':
		document.write ('<img src="../images/tab.gif" style="position:absolute; top:147px; left:635px;">');
		break;
	case 'ELTTContactUs.asp':
		document.write ('<img src="../images/tab.gif" style="position:absolute; top:147px; left:800px;">');
		break;
	}
}
