/*
$(function(){
	if(navigator.userAgent.match("MSIE 6")){
		var wWidth = window.innerWidth;
		$('object#adn').css({ width: wWidth });
		$('object#adn embed').css({ width: wWidth });
	};
});
*/

function flashResize(){
	if(navigator.userAgent.match(/Safari/)){
		var wHeight = window.innerHeight;
	}else if(navigator.userAgent.match(/Opera/)){
		var wHeight = document.body.clientHeight;
	}else{
		var wHeight = document.documentElement.clientHeight;
	}
	if(wHeight<760){
		wHeight = 770;
	}
	$('object#adn').css({
			height: wHeight+"px",
			top: "0"
	});
}

function flashReset(){
	$('object#adn').css({
			height: "524px",
			top: "46px"
	});
}

function flashResize2(){
	$('object#adn').css({
			height: "570px",
			top: "0"
	});
}