var xmlns = 'http://www.w3.org/1999/xhtml';

if(!document.createElementNS)
{
	document.createElementNS = function(xmlns, elem)
	{
		return $(document.createElement(elem));
	};
}

if(/Safari\/419.3/.test(navigator.userAgent))
{
	window.addEventListener('load', function()
	{
		$('foot').setStyle({ 'width' : ($('foot').getWidth() + 1) + 'px' });
		setTimeout(function() { $('foot').setStyle({ 'width' : '' }) }, 0);
	}, false);
}