Hola usando jquery puedes hacer algo asi:
Primero pon en un contenedor a ambos banners asi:
Código HTML:
Ver original
<object width="1277" height="80"> <param name="movie" value="../banners/vc_banner_h_ch.swf"/> <param name="quality" value="high" /> <embed src="../banners/vc_banner_h_ch.swf" id="bann_exp" width="1277" height="80" quality="high" ></embed> <div id="bann_exp2" style="position:absolute; width:1277px; height:200px; z-index:0; display: none"> <object width="1277" height="200"> <param name="movie" value="../banners/vc_banner_h_grd.swf"/> <param name="quality" value="high" /> <embed src="../banners/vc_banner_h_grd.swf" id="bann_exp" width="1277" height="200" quality="high" ></embed>
Fijate que cambie tambien en el banner2 visivilty por display:none y quite en ambos banners los eventos javascript.
Y el script jquery seria algo asi
Código Javascript
:
Ver original$(document).ready(function(){
$('#bann').mouseover(function(){
$('#bann_exp').hide();
$('#bann_exp2').show();
}).mouseout(function(){
$('#bann_exp').show();
$('#bann_exp2').hide();
});
});
Espero te sirva y suerte.
Saludos.