$(document).ready(function() { 
	$('.thumbs li')
		.live('mouseenter',function(){
			$(this).stop()
			.animate({top:0},300)
			$(this).css({opacity:1.0})
			th=$(this).find('img');
			th.stop()
			.animate({ width:176, height:72 },300);
		})
		.live('mouseleave',function(){
			$(this).stop()
			.animate({top:0},300)
			$(this).css({opacity:0.7})
			th=$(this).find('img');
			th.stop()
			.animate({ width:176, height:72 },300);
		});
		
	$('.thumbs li.selected')
		.live('mouseenter',function(){
			$(this).stop()
			.animate({top:0},300)
			$(this).css({opacity:1.0})
			th=$(this).find('img');
			th.stop()
			.animate({ width:176, height:72 },300);
		})
		.live('mouseleave',function(){
			$(this).stop()
			.animate({top:0},300)
			$(this).css({opacity:1.0})
			th=$(this).find('img');
			th.stop()
			.animate({ width:176, height:72 },300);
		});

}); 
