jQuery(function( $ ){
	$('#mainnav').greybackMenu();
	$('#homepage_panel').attr({scrollTop:0,scrollLeft:0});
	var $last = $([]);//save the last link
	
	$('#homepagemenu').localScroll({
		target: '#homepage_panel', //could be a selector or a jQuery object too.
		axis:'xy', //the default is 'y'
		queue:true,
		duration:2000,
		hash:false,
		//easing:'easeOutBack',
		onBefore:function( e, anchor, $target ){//'this' is the clicked link
			$('#media_roller_1').fadeOut();
			$last.removeClass('scrolling');
			$last = $(this).addClass('scrolling');
			if( this.blur )
				this.blur();//remove the awful outline
		},
		onAfter:function( anchor ){
			$last.removeClass('scrolling');
		}
	});

	$('.default_subnav li.active').parents('li').css('display','block');
});