images not showing up in tabs problem in IE

images not showing up in tabs problem in IE

I have to make tabs without the ui-tabs, just simple tabs.  I'm doing it using the visiblity css property.  Works perfectly in firefox and chrome.  In IE images don't show up if they are located in the tab body, but space is allocated for them, it's just blank.  any help you can give would be greatly appreciate.

here is the css that applies:
                 
                                  .news.selected {
                       visibility:visible;
                       position:relative;
                       margin-bottom:5px;
                       padding:10px;
                       border: 1px solid #064B94; }

              .news {
                   position:absolute;
                   display:block;
                   background:white;
                   visibility:hidden;
                     width: auto; }

here is the javascript:

                                  <script src="jquery-1.4.2.min.js" type="text/javascript"></script>
                                 
                                   <script type="text/javascript">
                                   /*<![CDATA[*/jQuery(document).ready(function(){
                                  
                                   jQuery(".1").addClass("selected");
                                  
                                   jQuery(".tab a").click(function(){
                                  
                                     var tabNumber=jQuery(this).attr("class");
                                     var parentID=findJournalId(this);                          
                                     var divSelector=parentID+" div."+tabNumber;
                                  
                                     jQuery(divSelector).siblings().removeClass("selected");
                                     jQuery(this).parent().siblings().children().removeClass("selected");
                                     jQuery(this).addClass("selected");
                                     jQuery(divSelector).addClass("selected")
                                    })
                                   });
                                  
                                   function findJournalId(d){
                                     var parent=jQuery(d).parent();
                                     
                                     while(!parent.hasClass("journal-content-article"))
                                     {
                                       parent=parent.parent();
                                     }
                                  
                                     var parentID=parent.attr("id");
                                     var ret="#"+parentID.replace(/(:|\.)/g,"\\$1");                      
                                     return ret;
                                   };/*]]>*/
                                   </script>

and the HTML:

                                                     <div class="journal-content-article" id="article_66742_350610_1.0">
                                   <ul id="newsTabs">
                                      <li class="tab">
                                       <a class="1">first tab</a>
                                      </li>
                                     <li class="tab">
                                       <a class="2">second tab</a>
                                     </li>
                                     <li class="tab">
                                       <a class="3">third tab</a>
                                     </li>
                                     </ul>
                                     
                                      <div class="news 1">
                                        This is the first portlet
                                        <img width="200px" src="banner head.jpg" />
                                      </div>
                                      <div class="news 2">
                                       what up 2
                                      </div>
                                     <div class="news 3">
                                       hello 3
                                     </div>
                                     </div>