$(document).ready(function() {
  $("#moregal li:last").css("margin-right", "0px"); 
});
$(document).ready(function() {
    //On mouse over those thumbnail
    $('.item').hover(function() {
        //Display the caption
    $(this).find('div.caption').stop(false,true).fadeIn(500);
    },
    function() {
        //Hide the caption
    $(this).find('div.caption').stop(false,true).fadeOut(500);
    });
});
