$(document).ready(function(){
    $('#flash_popup').flash({
        src: '/public/swf/popup_v2.swf',
        width: 600,
        height: 424,
        wmode: 'transparent',
        flashvars: {template: '2'}
    });
});
function fechar_popup(){
	$('#popup').hide();
}

// Pop-up viagem
$('#popup').click(function(){
    $(this).fadeOut('slow');
});

$('#popup').fadeIn(1000);

