Iam not getting the same errors with my IE as yours but some other i think, might be related though.
 
in wrapper.html find
	
	
below that you have
	
	
	
		Code:
	
	
		    <div style="align"<font color="#FFFFFF">
 
סופרים הצבעות עד ה10 בכל חודש <a href="http://israeltopsites.com/?a=page&id=Winners">
פרסי המנצחים </a>
 
 
(Ctrl-D)  להוסיף אותנו למועדפים לחצו  </b></font>
    <div class="cb"> </div>
	 
 But it needs to be
	
	
	
		Code:
	
	
		<div class="cb"> </div>
 
    <div><font color="#FFFFFF">
 
סופרים הצבעות עד ה10 בכל חודש <a href="http://israeltopsites.com/?a=page&id=Winners">
פרסי המנצחים </a>
 
 
(Ctrl-D)  להוסיף אותנו למועדפים לחצו </font></div>
	 
 Note, you had a opened div tag
- <div style="align"
--- style="align" is invalid
--- div opening tag missed > above
- you tried to make a div, but div was not closed at the end </div>
- you had a closing bold tag, but never opened one
 
 
Then you have your ad banner above the footer
	
	
	
		Code:
	
	
		<!--begin The Banner Exchange code --><iframe src="http://www.thebannerexchange.com/display/15037/1//" frameborder="0" vspace="0" hspace="0" width="468" height="60" marginwidth="0" marginheight="0" scrolling="no"></iframe><!-- end The Banner Exchange code -->
	 
 It is missplaced there.
It should either use the ad plugin ( in admin ) and add the banner code to zone C Banners
or place it manually above
	
	
	
		Code:
	
	
		<div class="pagination"></div>
	 
 Fix these issues at first, iam positive it fixes most of your problems but we will see. Once done we can continue if needed
 
 
 
 
 
Another issue. In wrapper.html you removed <li> tags from the rankings method menu.
find
	
	
	
		Code:
	
	
		<ul class="category_menu">
	 
 The third link from that needs to be like this ( also note the pv_hide template tag, its needed )
	
	
	
		Code:
	
	
		<li{$pv_hide}><a href="{$list_url}/{$url_helper_method}pv{$cat_sort}{$url_tail}">{$lng->rank_pageviews} {$method_views}</a></li>