$(document).ready(function() {
	
	$('.content-hover').css({ opacity: 0 });
	$('.content-hover').mouseenter(function() {

		$(this).find($('li')).css({ opacity: 0, marginTop:17});
		$(this).css({ opacity: 1 });
			$(this).find($('li')).each(function(index) {
				tweenTime = index * 50 + 200;
				delayTime = index * 250;
   				$(this).delay(delayTime).animate({opacity: 1, marginTop:0}, {queue: false, duration:tweenTime, easing:"easeOutQuad"});
  			});
	});
	
	$('.content-hover').mouseleave(function() {
		$(this).animate({ opacity: 0 }, {duration:150, easing:"easeOutQuad"});
	});	
});
