﻿$(document).ready(function () {
    $('.newsSummaryItem:first').parent().prepend('<div class="FirstNewsSummaryItem"></div>');

    $('.contentPlaceHolder img').each(function (index) {
        if ($(this).css("float") == "right") {
            $(this).css('margin-left', '15px')
        }
        if ($(this).css("float") == "left") {
            $(this).css('margin-right', '15px')
        }
    });
});
