mydomain = "http://www.doddhollow.com/";
//navbar = pageName;
function drawAnc(linkName, linkSrc, indent, style) { 
if (linkName != pageName)
	if (indent != '')
		return '<span class="indented"> ' + '<a href="' + mydomain + linkSrc + '" ' + style + ' >' + linkName + '</a></span><br />' ;
	else
		return '<a href="' + mydomain + linkSrc + '" ' + style + ' >' + linkName + '</a><br />' ;
else if (linkName == pageName)
	if (indent != '')
		return '<span class="thispageIndent"> ' + linkName + '</span><br />';
	else
		return'<span class="thispage"> ' + linkName + '</span><br />';
} 
  
function drawNav() { return drawAnc('Home','index.php" ','', '') +
drawAnc('Java','java.php','','')+
drawAnc('Speller','speller/ajspeller.php', 'indent','title="Spelling Tutor"')+ 
drawAnc('Adlibs','adlibs/ajadlibs.php', 'indent','title="Have fun with Mad Adlibs"')+ 
drawAnc('Cipher','cipher/cipher.php', 'indent','title="Create coded messages"')+
drawAnc('Math Quiz','math/ajmath.php', 'indent','title="Practice math problems"')+ 
drawAnc('Reversed Letters','reverse/ajreverse.php', 'indent','title="Orient your letters"')+ 
drawAnc('Osteo Quiz','quiz/ajquiz.php', 'indent','title="Osteoporosis Quiz"')+ 
drawAnc('String Parser','strings/ajstrings.php', 'indent','title="Everything you don\'t need to know about a sentence"')+ 
drawAnc('Color Picker','colors/ajcolors.php', 'indent','title="Find the RGB values of a color"')+ 
drawAnc('JavaScript','jscript.php','','') + 
drawAnc('Secret II','secret.php', 'indent','title="Make and decode secret messages"')+ 
drawAnc('Duedate','duedateF/due.php', 'indent','title="When\'s the Baby Due?"')+ 
drawAnc('My Photos','myphotos.php','','title="Just some photos i like"') + 
drawAnc('Sunrise','myphotos/aasunrise.php', 'indent','title="Sunrise panarama"')+  
drawAnc('Videos','myphotos/aavideos.php', '','title="Videos"')+ 
drawAnc('Horse Video 1','myphotos/aahorsevid1.php', 'indent','title="Rolex 3day event"')+ 
drawAnc('Horse Video 2','myphotos/aahorsevid2.php', 'indent','title="Rolex 3day event"')+ 
drawAnc('Horse Video 3','myphotos/aahorsevid3.php', 'indent','title="Rolex 3day event"')+ 
drawAnc('About','about.php','','') + 
drawAnc('Contact','contact.php','','');
}   

function drawAnc1(linkName, linkSrc, indent) { return 'here:' + linkName + ' there';}
function drawNav1() { return drawAnc('Home','index.php','yes');}
//function drawNav() { return "8" + pageName + "9";}

//function drawNav() { return "function drawnav";}

//navbar = 'navbar';
//navbar = drawNav();

