$(document).ready(function()
{
  var $thumbs = $('.thumbs li');
  
  $thumbs.live('mouseover mouseout', function(event)
  {
    if (event.type == 'mouseover') {
      $(".imagesThumb", $(this)).css('opacity','1');
      $(".title", $(this)).css('opacity','1');
      $(".light", $(this)).css('opacity','1');
      $("a", $(this)).css('background-color', '#1A1A1A');
      $(".imagesThumb", $(this)).stop().animate({top:'50px'},300, function()
      {
      });
      $(".dark", $(this)).stop().animate({ opacity : '0' },210);
    } else {
      $(".imagesThumb", $(this)).stop().animate({top:'0px'},200);
      $(".dark", $(this)).stop().animate({ opacity : '1' },500, function() 
      { 
        $('a', $(this).parent().parent().parent()).css('background-color','transparent');
        $('.title', $(this)).css('opacity','0');
        $('img.light', $(this)).css('opacity','0'); 
      });
    }
  });
  
});


