(function() {
	$('#nav-company').click(function(e) {
		e.preventDefault();
		$.scrollTo('#company', 1000, {easing:'easeOutQuart',offset:-60});
	});
	$('#nav-recruit').click(function(e) {
		e.preventDefault();
		$.scrollTo('#recruit', 1000, {easing:'easeOutQuart',offset:-60});
	});
	$('#btn-pagetop a').click(function(e) {
		e.preventDefault();
		$.scrollTo('#main', 1000, {easing:'easeOutQuart',offset:-526});
	});
})();
window.onload = function() {
	if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
		setTimeout(scrollTo, 100, 0, 1);
	}
}