/*$('#content img').hide().load(function () {
	$(this).fadeIn(500);
});*/

$(document).ready(function() {

	//localScroll
	$.localScroll.defaults.axis = 'y';

	/*$.localScroll.hash({
		queue:true,
		duration:2000,
		easing:'easeOutSine',
		margin:true,
		offset:0,
	});*/

	$.localScroll({
		queue:true,
		duration:1000,
		easing:'easeOutSine',
		stop:true,
		lock:false,
		lazy:true,
		//hash:true,
		margin:true,
		offset:{top:-15},
		//filter:'.menu > li > a[href="#"]',
		onBefore:function( e, anchor, $target ){
		},
		onAfter:function( anchor, settings ){
		}
	});

	/*$("img").lazyload({
		failurelimit: 50,
		effect: "fadeIn"
	});*/

});

//when all is loaded
$(window).load(function() {
});
