/******************************************************************************
Strip Titles Function by Brad Daily
Takes away the title attribute from Current Links.
Related: bradleyboy.com/blog/archives/
 ******************************************************************************/

function strip_title() {
var num = '';
var whoDat = document.body.id;
switch (whoDat){
	case 'h':
	start = 0;
	num = 1;
	break;
	
	case 'ar':
	start = 2;
	num = 2;
	break;
	
	case 'ab':
	start = 3;
	num = 3;
	break;
	
	case 'p':
	start = 3;
	num = 4;
	break;
}

a = document.getElementsByTagName('A');
for (var i = start; i < (num + 1); i++) {
a[i].title = '';
}
}

window.onload = strip_title;