function ChangeBackground()
{
	$("body").css('background-image', 'url(libs/dyn-img/dyn-img.php?w='+$(window).width()+'&h='+$(window).height()+')');
}

$(window).resize(function(){
	ChangeBackground();
});

$(document).ready(function(){
	$("#interface").flash({ 
    	src: 'tpl/swf/interface.swf', 
    	width: 974, 
    	height: 175, 
    	wmode: 'transparent'
	});
	
	$("#video").flash({ 
    	src: 'tpl/swf/video.swf', 
    	width: 178, 
    	height: 84, 
    	wmode: 'transparent'
  	});
	
	//ChangeBackground();
});

