﻿/// <reference path="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.1.js" />

$(document).ready(function () {
    // This is used for resizing articles in listing when article images are used
    $(".article-picture").each(function () {
        var parentHeight = $(this).parent().height();
        var pictureHeight = $(this).height();
        if (pictureHeight > parentHeight) $(this).parent().height(pictureHeight);
    });
});

