$(document).ready(function() {
	
	$("#thumbs li a").hover(
	  function () {
	    $(this).find(".thumb-color").stop().animate({ opacity: 1}, 400);
	  }, 
	  function () {
	    $(this).find(".thumb-color").stop().animate({ opacity: .01}, 400);
	  }
	);
	
	
	$("#img-holders li").hover(
	  function () {
			if ( $(this).find(".caption").html() != "" ) {
				$(this).find(".caption").stop().animate({bottom:0},100);
			}
	  }, 
	  function () {
			$(this).find(".caption").stop().animate({bottom:"-22px"},100)
	  }
	);
	
	

});	
