$(document).ready(function(){
	$('div.gallery').galleryScroll({
		step:1,
		duration:700,
		funcOnclick:function(){
			$('p.margin').html($('ul',this).css('marginLeft'));
		}
	});
});
$(document).ready(function()
{
	$('ul.accordion').accordion({ 
	        autoheight: false,
	        header: ".opener",
	        active: '.selected',
	        selectedClass: 'active',
	        alwaysOpen: false,
	        event: "click"
	});
});
function initHover()
{
	var nodes = document.getElementById("navigation");
	if(nodes)
	{
		nodes = nodes.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", initHover);
