hover over "promo_p04.jpg" does the image appear?
might be a JS setting in browsers
I would find the:
<script type="text/javascript" language="javascript">
<!--
function togglePromo(oRadio) {
var aSwitcher = {text: 'image', image: 'text'};
$('#promo-cnt-' + aSwitcher[$(oRadio).val()]).bx_anim('hide', 'fade', 'slow', function(){
$('#promo-cnt-' + $(oRadio).val()).bx_anim('show', 'fade', 'slow');
});
}
-->
</script>
and replace with:
<script type="text/javascript" language="javascript">
<!--
function togglePromo(oRadio) {
var aSwitcher = {text: 'image', image: 'text'};
$('#promo-cnt-' + aSwitcher[$(oRadio).val()]).bx_anim('hide', 'fade', 'slow', function(){
$('#promo-cnt-' + $(oRadio).val()).bx_anim('show', 'fade', 'slow');
});
}
//-->
</script>
or
<script type="text/javascript" language="javascript">
function togglePromo(oRadio) {
var aSwitcher = {text: 'image', image: 'text'};
$('#promo-cnt-' + aSwitcher[$(oRadio).val()]).bx_anim('hide', 'fade', 'slow', function(){
$('#promo-cnt-' + $(oRadio).val()).bx_anim('show', 'fade', 'slow');
});
}
</script>
this runs the JS radio button