You need to open file index.php in the ja_corona folder,
1. At line 96th (or 92 in 1.0 version), you will see the code like this:
<blockquote><!– BEGIN: MAIN NAVIGATION –>
<div id=”ja-mainnav” class=”clearfix”>
<?php $jamenu->genMenu (0); ?>
</div>
<!– END: MAIN NAVIGATION –></blockquote>
Remove <?php $jamenu->genMenu (0); ?> and insert your flash code there
<blockquote><!– BEGIN: MAIN NAVIGATION –>
<div id=”ja-mainnav” class=”clearfix”>
your flash code here
</div>
<!– END: MAIN NAVIGATION –></blockquote>
2. at line 92nd (or 87th), you see this code:
<blockquote><h1 class=”logo”>
<a href=”index.php” title=”<?php echo $tmpTools->siteName(); ?>”><span><?php echo $tmpTools->siteName(); ?></span></a>
</h1></blockquote>
Remove it and insert this block:
<blockquote><div id=”flash-logo”>
your flash code here
</div></blockquote>
Remember replace the text “your flash code here” with your actual flash code.
goodluck.