/*
The code in this file or document and its designs, methods, data, know-how and all other related elements are the property of LUXSON ltd © Copyright 2009-2010 and/or may contain code operated under third party licence(s); unauthorised use is therefore prohibited, including (without limitation) copying, editing, adapting, reverse engineering or any other similar or related action, in part or in full. Separate rights may also exist for LUXSON and/or client and/or third party content and/or services. For licensing information please contact LUXSON ltd.
*/

// This will stop the Christmas hover message from displaying over the LUXSON logo on an iPhone/iPod

if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)))
{
	document.write('<style type="text/css">.Christmas09{display:none;}</style>');
}

// This will scroll to the page content on an iPhone/iPod/iPad on page load

if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i)))
{
	window.onload=function()
	{
		setTimeout(function(){window.scrollTo(0,1);},100);
	}
}
