	$(document).ready(function() {		
							   
		$('#loading').hide();
		$('#wrapper').show();
		
		$.localScroll.defaults.axis = 'y';
		
		$('#nav').localScroll({
			target: '#slide_wrapper',
			queue:true,
			duration:600,
			hash:true,
			onBefore:function( e, anchor, $target ){
				// The 'this' is the settings object, can be modified
			},
			onAfter:function( anchor, settings ){
				// The 'this' contains the scrolled element (#content)
			}
		});
		
		$("#slider").easySlider();
		
		$("a")
			.filter(".thumb")
			.fancybox();
		
		$("a")
			.filter(".iframe")
			.fancybox({
				'frameWidth': 440,
				'frameHeight': 440
			});
			
			
	});
