startMenu = function() {
	if (document.all&&document.getElementById) 
	{
		cssmenu = document.getElementById("csstopmenu");
		for (i=0; i<cssmenu.childNodes.length; i++) 
		{
			node = cssmenu.childNodes[i];
			if (node.nodeName=="LI") 
			{
				node.onmouseover=function() 
				{
					this.className+=" over";
				}
				node.onmouseout=function()
				{                  
					this.className=this.className.replace(" over", "")
				}
			}
		}
	}
}

if (window.attachEvent) 
{
	window.attachEvent("onload", startMenu);
}
else
{
	window.onload=startMenu;
}


window.addEvent("domready", function(event) {  
    if ($('box4'))
	{ 
	var nS4 = new noobSlide({
					box: $('box4'),
					items: $$('#box4 div'),
					size: 188,
					addButtons: {previous: $('prev8'), next: $('next8') },
	
					onWalk: function(currentItem,currentHandle){
				}
			});
	}
});
