/***********************************************************************

Author:     Arno Hoogma
URL:        http://www.4rn0.nl

***********************************************************************/


if (typeof window.jQuery != 'undefined') 
{
	document.documentElement.className = 'js';
	
	$(function()
	{
		$(window).resize(onResize).trigger('resize');
		
		var so = new SWFObject('main.swf', 'website', '100%', '100%', '9', '#161715');
		so.useExpressInstall('swfobject/expressinstall.swf');
		so.addParam('menu', 'false');		
		so.write('container');	
	});
	
	function onResize()
	{
		var myWidth = $(document).width();		
		if ( myWidth < 820 )
			myWidth = 820;

		$('#container').css( { width: myWidth } );
	} 
}
