
var scrollinc = 1;
var home = true;

if(location.pathname != '/default.aspx' && location.pathname != '/') {
	scrollinc = 300;
	home = false;
}


var mobile = false;
var ipad = false;
var script = 'functions';
if(/iPad/.test(navigator.userAgent)) {
	ipad = true;
} else if(/mobile/i.test(navigator.userAgent)) {
	script = 'mobile';
	mobile = true;
}

$(window).bind('load', function() {
	mobile && setTimeout(function () {
		window.scrollTo(0, scrollinc);
	}, 100);
});

(function() {
var sga = document.createElement('script'); sga.type = 'text/javascript'; sga.async = true;
sga.src = '/js/' + script + '.js';
var ss = document.getElementsByTagName('script')[0]; ss.parentNode.insertBefore(sga, ss);
})();
