﻿$(document).ready(function() {

    $(".imageCaptionLeft").each(function() {
        $(this).wrap('<div class="imgWrapperLeft"></div>').parent().append('<p>' + $(this).attr('alt') + '</p>');
    });

    $(".imageCaptionRight").each(function() {
        $(this).wrap('<div class="imgWrapperRight"></div>').parent().append('<p>' + $(this).attr('alt') + '</p>');
    });

    $(".breadcrumb a:last").css('font-weight', 'bold');

    $(".subNav ul > li:not(:has('a'))").wrapInner('<div class="noLink">');
    
});
