// JavaScript Document //v2.0
var ua=navigator.userAgent.toLowerCase();
window.onload = function(e) {
	if(ua.indexOf("ipod")>-1||ua.indexOf("ipad")>-1||ua.indexOf("iphone")>-1||ua.indexOf("Android")>-1){
		setTimeout(function(){window.scrollTo(0, 1);}, 100);
	}
	var cookie = readCookie("style");
	var title = cookie ? cookie : getPreferredStyleSheet();
	setActiveStyleSheet(title);
}

