$(document).ready(function()
{

	$('#list ul li').mouseenter(function()
	{
		$(this).css('background','#015402');
		$(this).find('.thumb').animate({
		    height: '47px'
		}, 200, function() {
		});
		
	});
	
	$('#list ul li').mouseleave(function()
	{
		$(this).css('background','#002201');
		$(this).find('.thumb').animate({
		    height: '135px'
		  }, 200, function() {
			  $(this).die("mouseover");
		  });
	});		
});
