I've found that if I remove the following code, it works. But why?? I really want that code there.
Code:
<script>
$(document).ready(
function() {
$('#header-img-1').innerFade({
animationtype: 'fade',
speed: 750,
timeout: 5200,
startDelay:1400,
type: 'sequence',
containerheight: '1em'
});
$('#header-img-2').innerFade({
animationtype: 'fade',
speed: 750,
timeout: 5200,
startDelay:2800,
type: 'sequence',
containerheight: '1em'
});
$('#header-img-3').innerFade({
animationtype: 'fade',
speed: 750,
timeout: 5200,
startDelay:4200,
type: 'sequence',
containerheight: '1em'
});
});
</script>
Bookmarks