$(document).ready(function(){
	$('.case-study-quad').hoverIntent(function(){
		$(this).children('.frontLogo').stop().fadeIn(900, function(){
			$(this).parent().children('.frontCaption').stop().animate({"top":'100px'}, 400);
		});
    }, function(){
		$(this).children('.frontLogo').stop().fadeOut(900);
		$(this).children('.frontCaption').stop().animate({"top":'155px'}, 800);
	});
	$('.case-study-quad-last').hoverIntent(function(){
		$(this).children('.frontLogo').stop().fadeIn(900, function(){
			$(this).parent().children('.frontCaption').stop().animate({"top":'100px'}, 400);
		});
    }, function(){
		$(this).children('.frontLogo').stop().fadeOut(900);
		$(this).children('.frontCaption').stop().animate({"top":'155px'}, 800);
	});
	$('.case-study-quad-tall').hoverIntent(function(){
		$(this).children('.frontLogo').stop().fadeIn(900, function(){
			$(this).parent().children('.frontCaption-tall').stop().animate({"top":'85px'}, 400);
		});
    }, function(){
		$(this).children('.frontLogo').stop().fadeOut(900);
		$(this).children('.frontCaption-tall').stop().animate({"top":'155px'}, 800);
	});
	$('.case-study-quad-last-tall').hoverIntent(function(){
		$(this).children('.frontLogo').stop().fadeIn(900, function(){
			$(this).parent().children('.frontCaption-tall').stop().animate({"top":'85px'}, 400);
		});
    }, function(){
		$(this).children('.frontLogo').stop().fadeOut(900);
		$(this).children('.frontCaption-tall').stop().animate({"top":'155px'}, 800);
	});
	$('.case-study-quad-short').hoverIntent(function(){
		$(this).children('.frontLogo').stop().fadeIn(900, function(){
			$(this).parent().children('.frontCaption-short').stop().animate({"top":'120px'}, 400);
		});
    }, function(){
		$(this).children('.frontLogo').stop().fadeOut(900);
		$(this).children('.frontCaption-short').stop().animate({"top":'155px'}, 800);
	});
	$('.case-study-quad-last-short').hoverIntent(function(){
		$(this).children('.frontLogo').stop().fadeIn(900, function(){
			$(this).parent().children('.frontCaption-short').stop().animate({"top":'120px'}, 400);
		});
    }, function(){
		$(this).children('.frontLogo').stop().fadeOut(900);
		$(this).children('.frontCaption-short').stop().animate({"top":'155px'}, 800);
	});
	
});

