
$(function() {
    $('.pest-image-lightbox').each(function() {
        var imgPath = $(this).attr("img-url");
        
        $(this).siblings('.caption').addClass('push-up-caption');
        
        $(this)
            .wrap('<a href="' + imgPath + '"></a>')
            .parent()
                .lightBox( { overlayOpacity: 0.7 } );
        
        $('<img class="zoom-icon" src="' + RM_BASEURL + 'Images/zoom.png" alt="" />').insertAfter(this);
    });
    
    $('.pestImages').height($('.bodyContent').height());
    
    if ( $('.pestImages img').length > 0 ) {
        $('#contentColumn').width(315);
    }
    
    $('li.no-bullets').removeClass('no-bullets').parent('ul').addClass('no-bullets');
    
    $('hr + h2').css('margin-top', 0);
    
    $('h2:first').css({margin: 0, padding: 0});
        
    if ( /MSIE [67]/.test(window.navigator.appVersion) ) {
        $('hr').addClass('too-much-space');
    }
});
