function initBlogTabs() {

         $('#tab_content_1').show();
         
         $('#tab_item_1').click(function(event){
            event.preventDefault();

            $("#tab_image_1").attr("src", "wp-content/themes/bb_home/images/boxes/tab-1a.jpg");
            $("#tab_image_2").attr("src", "wp-content/themes/bb_home/images/boxes/tab-2.jpg");
            $("#tab_image_3").attr("src", "wp-content/themes/bb_home/images/boxes/tab-3.jpg");

            $('.tab_content').hide();
            $('#tab_content_1').show();
         });

         $('#tab_item_2').click(function(event){
            event.preventDefault();

            $("#tab_image_1").attr("src", "wp-content/themes/bb_home/images/boxes/tab-1.jpg");
            $("#tab_image_2").attr("src", "wp-content/themes/bb_home/images/boxes/tab-2a.jpg");
            $("#tab_image_3").attr("src", "wp-content/themes/bb_home/images/boxes/tab-3.jpg");

            $('.tab_content').hide();
            $('#tab_content_2').show();
         });

         $('#tab_item_3').click(function(event){
            event.preventDefault();

            $("#tab_image_1").attr("src", "wp-content/themes/bb_home/images/boxes/tab-1.jpg");
            $("#tab_image_2").attr("src", "wp-content/themes/bb_home/images/boxes/tab-2.jpg");
            $("#tab_image_3").attr("src", "wp-content/themes/bb_home/images/boxes/tab-3a.jpg");

            $('.tab_content').hide();
            $('#tab_content_3').show();
         });

}
