var thin_line = new Array() 

thin_line[0] = 'a74040'
thin_line[1] = 'b25fca'
thin_line[2] = 'bf925e'
thin_line[3] = '3d7bc7'
thin_line[4] = '28a2a1'
thin_line[5] = '5da71b'
thin_line[6] = 'b1ab04'
thin_line[7] = 'cd8d11'
thin_line[8] = 'ae7583'

var line = thin_line.length;

var whichline = Math.round(Math.random()*(line-1));

function showline(){
document.write('<div id="thin_line" style="border-bottom:2px solid #'+thin_line[whichline]+';"></div> ');
}

over = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" over";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp("over"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", over);

 /*-----------------------------------------bookmark code-----------------------------------------*/

 /* Modified to support Opera */
function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}
