/*$(document).ready(function(){
	resizaFlash();
	$(window).resize(function(){
		resizaFlash();
	});
});

function resizaFlash()
{
	var object = $('#site_main');
	var w_height = $(window).height();
	var object_h = w_height;
	var object_w = w_height/796*1200;
	$('embed', object).attr('height', object_h);
	$('embed', object).attr('width', object_w);
}*/