试试下面复杂的办法
1. 在images文件夹内新建一个flash文件夹。
2.传4张图片到flash文件夹内,如:top_back1.jpg-----top_back4.jpg
3. 在模板内找到<DIV><?php echo $logo; ?></DIV></TD>
4.把以下代码贴到<DIV><?php echo $logo; ?></DIV>后面
<script type="text/javascript">
imgUrl1 = 'images/flash/top_back1.jpg';
imgUrl2 = 'images/flash/top_back2.jpg';
imgUrl3 = 'images/flash/top_back3.jpg';
imgUrl4 = 'images/flash/top_back4.jpg';
imgLink1 = 'index.php';
imgLink2 = 'index.php';
imgLink3 = 'index.php';
imgLink4 = 'index.php';
var focus_width=780
var focus_height=260
var swf_height = focus_height
var pics=imgUrl1+"|"+imgUrl2+"|"+imgUrl3+"|"+imgUrl4
var links=imgLink1+"|"+imgLink2+"|"+imgLink3+"|"+imgLink4
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ focus_width +'" height="'+ swf_height +'">');
document.write('<param name="allowScriptAccess" value="sameDomain"><param name="movie" value="images/flash/focus.swf"><param name="quality" value="high"><param name="bgcolor" value="#FFFFFF">');
document.write('<param name="menu" value="false"><param name=wmode value="opaque">');
document.write('<param name="FlashVars" value="pics='+pics+'&links='+links+'&borderwidth='+focus_width+'&borderheight='+focus_height+'">');
document.write('<embed src="images/flash/pixviewer.swf" wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&borderwidth='+focus_width+'&borderheight='+focus_height+'" menu="false" bgcolor="#F0F0F0" quality="high" width="'+ focus_width +'" height="'+ focus_height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
document.write('</object>');
</script>