
$(document).ready(function() {

var flashWidth =  $(document).width();
var flashHeight = $(document).height();

var faktor_org = 704/1024;
var faktor = flashHeight / flashWidth;

if ( faktor_org < faktor){
	
	$('#flash').flash({
	    src: 'flash/Intro.swf',
	    width: flashWidth,
	    height: Math.floor((flashWidth / 1024 * 704)),
	    "wmode":"transparent"
	}); 
	
	$('#flash embed').css("position","absolute");
	$('#flash embed').css("top",Math.floor( ( flashHeight / 2) -  (( flashWidth / 1024 * 704) / 2) )+"px");

} else {
	$('#flash').flash({
	    src: 'flash/Intro.swf',
	    width: Math.floor(( flashHeight / 704 * 1024)),
	    height: flashHeight,
	    "wmode":"transparent"
	}, 
	{ expressInstall: true }); 
	$('#flash embed').css("position","absolute");
	$('#flash embed').css("left",Math.floor( ( flashWidth / 2) -  (( flashHeight / 704 * 1024) / 2) )+"px");
}
 
});


