function somequotes(){ 
var quotes=new Array() 

quotes[0]='<a href="index.html" class="nav">HOME</a> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="practiceareas.html" class="nav">PRACTICE AREAS</a> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="contactus.html" class="nav">CONTACT</a>' 
var whichquote=Math.floor(Math.random()*(quotes.length));//which quote to display 
var fontstylestart='<span class="nav">'; 
var fontstyleend='</span>' 
document.write(fontstylestart+quotes[whichquote]+fontstyleend) 
} 
somequotes();