$(document).ready(function()
{
   
    /* Show photo byline on mouseover */
    $('.img').mouseover(function()
    {
        $('.caption', this).stop(false, true);
        //        $('.captionicon', this).hide();
        $('.caption', this).show();
    }).mouseout(function()
    {
        $('.caption', this).fadeOut();
        //        $('.captionicon', this).show();
    });    
});

