$(function() {
	// this initialises the demo scollpanes on the page.
	$('div.scrollbox').jScrollPane();
	
	// animate footer block
	var _bl = $('#sidebar div.box-located');
	var _blHeight = _bl.height();
	_bl.css({
		height:0,
		visibility:'visible'
	});
	_bl.animate({height:_blHeight}, 1500);
});
function initMenu()
{
	var nodes = document.getElementById("navigation").getElementsByTagName("li");
	for (var i=0; i<nodes.length; i++)
	{
		nodes[i].onmouseover = function()
		{
			this.className += " hover";
		}
		nodes[i].onmouseout = function()
		{
			this.className = this.className.replace(" hover", "");
		}
	}
}
if (document.all && !window.opera) attachEvent("onload", initMenu);


$(document).ready(function(){
	$('#menu').animate({marginRight: 0}, 1500);
});
