$(function(){
	$('.no-csstransitions .item-detail').css({'display':'block','opacity':'0'});
	$('.no-csstransitions .section li').hover(
			function(){
				$(this).children('.item-detail').animate(
					{
						'top':'40px',
						'left':'80px',
						'opacity':'1'
					},
					'slow'
				);
			},
			function(){
				$(this).children('.item-detail').animate(
					{
						'top':'0',
						'left':'0',
						'opacity':'0'
					},
					'slow'
				);
			}
	);
});
