﻿var openHeight = 70;
var closedHeight = 35;
var animateDuration = 300;

function convertFeaturedItems()
{
	$(".FeaturedItem").mouseenter(rollUp);
	$(".FeaturedItem").mouseleave(rollDown);
}
function rollUp()
{
	$(this).children(".FeaturedProjectDetails").stop();
	$(this).children(".FeaturedProjectDetails").animate({ 
        height: openHeight
      }, animateDuration
		,"swing"
       );
}
function rollDown()
{
	$(this).children(".FeaturedProjectDetails").stop();
	$(this).children(".FeaturedProjectDetails").animate({ 
        height: closedHeight
      }, animateDuration
		,"swing"
       );
}
$(document).ready(convertFeaturedItems);