// localscroll
	jQuery(function( $ ){
       $('#nav1').localScroll();
	});
	
// accordion
	jQuery().ready(function(){
		jQuery('#list3').accordion({
			header: 'div.title',
			active: true,
			alwaysOpen: false,
			animated: "easeslide",
			autoheight: false,
			event: 'mouseover'
		});
		
		var wizard = $("#wizard").accordion({
			header: '.title',
			event: false
		});
		
		var wizardButtons = $([]);
		$("div.title", wizard).each(function(index) {
			wizardButtons = wizardButtons.add($(this)
			.next()
			.children(":button")
			.filter(".next, .previous")
			.click(function() {
				wizard.accordion("activate", index + ($(this).is(".next") ? 1 : -1))
			}));
		});
	});

