$(document).ready(function() {
	
	/* Featured Services */
	var featured_speed = 700;
	var featured_easing = 'easeOutCubic';
	var featured_normal_height = $('li:first div.content', '#featured').css('height');
	var featured_min_height = '83px';
	
	$('li div.content', '#featured').css({
		height: featured_min_height
	}).bind({
		'mouseenter': function() {
			$(this).stop().animate({
				height: featured_normal_height
			}
			, {
				duration: featured_speed
				, easing: featured_easing
			});
		}
		, 'mouseleave': function() {
			$(this).stop().animate({
				height: featured_min_height
			}
			, {
				duration: featured_speed
				, easing: featured_easing
			});
		}
	});
	
});
