The most obvious problem is that you shouldn't put script tags in the script box. You have it set to onLoad so it takes everything in the textbox and places inside the onLoad function.
So place the script tag for jquery in the head in the html box instead. Then remove the other script tag.
I also moved you document.ready function to then end and got it "working" in IE7 http://jsfiddle.net/pTcXB/. The images are not being replaced in IE event though the rotation work.
I'm pretty sure the reason is here:
$(activeBefore.find('a').attr('href')).fadeOut('slow',function(){
$(this).css('display','none');
});
IE7 atleast is a bit tricky when it comes to url's. It might be jquery specific but I never write plain javascript anymore so I'm not sure. If you add a link to the dom like elem.append('') that href will be http://www.blablabla.bla#something. Knowing that you can solve it in two way. Either add the link and then set the href by elem.attr('href', '#something') or you can split and the hash and build the url from there.
I tried the second approach and got it working(only tested IE7 through the IE9 emulator) http://jsfiddle.net/pTcXB/8/