﻿$(document).ready(function() {
    $(".FeaturedItem:first").css({ "margin-right": "14px" });

    // Height match featured items
    if ($(".FeaturedItem:first").height() > $(".FeaturedItem:last").height()) {
        var heightVar = $(".FeaturedItem:first").height() - $(".FeaturedItem:last").height();
        $(".FeaturedItem:last").find(".Description").height($(this).find(".Description").height() + heightVar + "px");
    }
    if ($(".FeaturedItem:last").height() > $(".FeaturedItem:first").height()) {
        var heightVar = $(".FeaturedItem:last").height() - $(".FeaturedItem:first").height();
        $(".FeaturedItem:first").find(".Description").height($(this).find(".Description").height() + heightVar + "px");
    }
});