// JavaScript Document

var tab_menu_thingy = new Array();
tab_menu_thingy['index.shtml'] = 1;
tab_menu_thingy['corporate.shtml'] = 2;
tab_menu_thingy['lists.shtml'] = 3;
tab_menu_thingy['buttons.shtml'] = 4;
tab_menu_thingy['email.shtml'] = 5;
tab_menu_thingy['graphics.shtml'] = 6;


for (key in tab_menu_thingy){
	if (window.location.pathname.indexOf('/' + key) > -1){
		highlight = document.getElementById('d' + tab_menu_thingy[key]);
		highlight.className = 'tab_on';
	}
}
