﻿var openHeight = 70;
var closedHeight = 45;
var animateDuration = 300;

function convertFeaturedItems() {
    if (!isIpadTest) {
        $(".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);
