function webkit1pxBugFix() {
	var vpWidth = document.width + document.body.getStyle('margin-left').toInt();
	var border_left = (vpWidth % 2 == 1) ? '1px transparent solid' : '0';
	document.body.setStyle('border-left', border_left);
}

if (Browser.Engine.webkit) {
	window.addEvent('load', webkit1pxBugFix);
	window.addEvent('resize', webkit1pxBugFix);
	window.addEvent('domready', function(){
		document.body.setStyle("font-size", "16px");
	});
}

var Site = {
	start: function(){
		if (top.location != location) top.location.href = document.location.href;
	}
}

window.addEvent('domready', Site.start);
window.addEvent('domready',function() { new SmoothScroll({ duration: 1800 }); });
/* window.addEvent('domready', function() { SqueezeBox.assign($$('a[rel=boxed]')); }); */