function showClickability() {
var docdomain = document.domain;
var testd = new RegExp("test");
var prodd = new RegExp("www");
if (docdomain.match(testd)) {
docdomain = docdomain.substring(5);
}
if (docdomain.match(prodd)) {
docdomain = docdomain.substring(4);
}
if (docdomain == "daytondailynews.com") {
// alert (docdomain);
document.write('
Tools
');
document.write('');
}
//if ((docdomain == "ajc.com") || (docdomain == "accessatlanta.com")) {
//alert(docdomain + " is domain");
//document.write('include');
//document.write('');
//document.write('');
//d//ocument.write('

');
//document.write('

');
//document.write('

');
//document.write('
');
//document.write('');
//document.write('
ajc.com > Associated Press story');
//document.write('
');
//}
}
showClickability()