Hi,
I have checked your site, I think causes of IE-7 problem comes from HTML mockup in topsl positon
<a href="/Produkter/kurs-opplaering.html">
<div class="img_caption left" style="float: left; width: 197px;"><img width="197" height="50" alt="Kurs i Joomla" src="/images/stories/bannere/banner-joomlakurs.png" class="caption" style="float: left;">
</div>
</a>
,
A <div> tag inside of <a> tag, is not good for IE7, this browser will be re-generate html, and push <div> outsite <a> tag, so your html is not correct.
To fix this bugs, try to replace <div> tag by <span>.
<a href="/Produkter/kurs-opplaering.html">
<span class="img_caption left" style="float: left; width: 197px;"><img width="197" height="50" alt="Kurs i Joomla" src="/images/stories/bannere/banner-joomlakurs.png" class="caption" style="float: left;">
</span>
</a>
,
Hope that helps