



$(function(){
//$('#imagecaption').hide();
$('#content').mouseover(function(){$('#imagecaption').show();});
$('#content').mouseout(function(){$('#imagecaption').hide();});
})