﻿jQuery(function ($) {
    $(document).ready(function (e) {
        $('img').each(function (index) {
            if ($(this).attr("src").match("http://feeds.wordpress.com/1.0/comments") != null) {

                //$(this).attr("src", "/Templates/Images/commentIcon.png");
                $(this).css("visibility", "hidden");
                $(this).css("display", "none");
            }

        });

        $("#gallery a").lightBox();
        
    });

});
