$(document).ready(function(){
	
	/* Featured Panel Box */
	if($('#unit-featured-info .unit').length) {
		$('#unit-featured-info .unit').each(function() {
			if($(this).hasClass('has-image')) {
				var infoboxHeight = $(this).find('.feature-info').height();
				$(this).find('.feature-info').css({"height": "18px"});
				$(this).hover(function() {
					$(this).find('.feature-info').animate({
						"height": infoboxHeight + 'px'
					});
				}, function() {
					$(this).find('.feature-info').animate({
						"height": "18px"
					});
				});
			}
		})
	}
});	
