$(document).ready(function(){
	nowScrolling = true;
	
	$(this).oneTime(1500, function() {
		$(document).scrollTo( $("#content"), 1500, {axis:'y'} , {easing:'quadInOut'} );
		$(this).oneTime(1500, function() {
			nowScrolling = false;
		});		
	});
	
	$(document).bind("mousewheel", function(e){
		if ( nowScrolling == true ) {
			return false;
		} else {
			return true;
		}
	});
});