﻿$(document).ready(
    function() {
        //set the first item class in the Main Menu
        $('#topmenu li:first-child').addClass('first');

        //set the first item class in the Sub Menu
        $('#sidebarMenu li:first-child').addClass('first');

        //remove the last arrow in the bread crumb
        $('#bread li:last-child a').addClass('breadLast');

        $('p span.InlineImage').parent().addClass('floatleft');

        $('p.floatleft img').addClass('LeftAligned');

        $('p.floatleft').each(function(i) {
            var widthPx = $(' img', this).width();
            var heightPx = $(' img', this).height();

            $(this).css({ width: widthPx + 'px', height: heightPx + 'px'});
        });
    }
);
