
				
window.onload = function(){
	var objName = document.getElementsByName("sideMenuLink");
						
	for(i=0;i<objName.length;i++){
							
		objName[i].parentNode.childNodes.item(2).style.display = "none";
								
							
		objName[i].parentNode.onmouseover = function(){
			this.childNodes.item(2).style.display = "block";
		}
							
		objName[i].parentNode.onmouseout = function(){
			this.childNodes.item(2).style.display = "none";
		}
							
		objName[i].parentNode.childNodes.item(2).onmouseover = function(){
			this.parentNode.style.backgroundColor = "#E8DFD3";
		}
							
		objName[i].parentNode.childNodes.item(2).onmouseout = function(){
			this.style.display = "none";
			this.parentNode.style.backgroundColor = "#FFFFFF";
		}
	}
}


function addBookmark(title,url) { 
	if (window.sidebar) { 
		window.sidebar.addPanel(title, url,""); 
	} else if( document.all ) { 
		window.external.AddFavorite( url, title); 
	} else if( window.opera && window.print ) { 
		return true; 
	}
}
