/**********************************************************
Article auto image size resizer - Jags Kumar 

This script removes any inline or css image sizes in the articles table and applys a fixed size to the image.

Size can be altered in code "var imageSize = 240"

(the numbers at the end define what width the image should be fixed at in pixels)
**********************************************************/
$(function() {
    var imageSize = 240
    $('td.articleImage').find('img').append(function() {
        $(this).removeAttr("height").css({ height: "" }).append(function() {
        $('td.articleImage img').width(imageSize).append(function() {
				$(this).css({"float":"right"});
			});
        });
    });
});
