jQuery(document).ready(function() {
	jQuery('.quadrant img').hover(function() {
		jQuery(this).css('position', 'relative').animate({
			bottom: '23'
		}, 170, function() {
			jQuery(this).css('position', 'relative').animate({
				bottom: '0'
			}, 230);
		});
	});
	jQuery('.quadContent a').hover(function() {
		jQuery(this).parents('.quadrant').children('a').children('img').css('position', 'relative').animate({
			bottom: '23'
		}, 170, function() {
			jQuery(this).css('position', 'relative').animate({
				bottom: '0'
			}, 230);
		});
	});
});

