<script type="text/javascript">
$zombie = $('img#flickr');
function runit(){
$("#main_content").hide();
$zombie
.animate({ opacity: 1 },"fast")
.animate({top:'500px',left:'100px'}, {duration:500})
.animate({top:'0px', left:'180px'}, {duration:600})
.animate({top:'400px', left:'180px'}, {duration:700})
.animate({top:'0px', left:'260px'}, {duration:800})
.animate({top:'300px', left:'320px'}, {duration:900})
.animate({top:'50px', left:'360px'}, {duration:1000})
.animate({top:'200px', left:'420px'}, {duration:1100})
.animate({top:'80px', left:'460px'}, {duration:1200})
.animate({top:'150px', left:'480px'}, {duration:1200})
.animate({top:'104px', left:'495px'}, 1300,function(){
$("#main_content").show();
});
}
runit()
</script>