// Display more links.
j(".acMoreLink").css({"display": "block"});

// Store original heights of category sections.
var acRecipientsHeight = j("#acRecipients").height();
var acOccasionsHeight = j("#acOccasions").height();
var acProductsHeight = j("#acProducts").height();

// Apply new heights to category sections.
j("#acRecipients").css({"height": "72px", "overflow": "hidden"});
j("#acOccasions").css({"height": "72px", "overflow": "hidden"});
j("#acProducts").css({"height": "72px", "overflow": "hidden"});

function acExpandCategory(category){
  j("#ac" + category + "").animate({"height": eval("ac" + category + "Height")}, "slow");
  j("#ac" + category + "MoreLink").css({"display": "none"});
}