The slideshow shops after 10 slides because you have 5 images and the 'maximum-slideshow-cycles' option set to 2 (5 x 2 = 10), so increase the 'maximum-slideshow-cycles' value to a higher number - maybe 100 (I dont imagine anyone will sit through 100 cycles so it will appear continuous).
I don't see your style revisions in the stylesheet - that's the part between the <style> and </styles> tags toward the top of the page.
What I do see is some confusion with styles and markup further down - ie;
Code:
<div id="wrap"{
width: 750px;
margin: 0 auto;
background-color: #fff;
position: relative;
z-index: 0;} >
So make sure to remove that ( put it back to <div id="wrap"> ) and make the change in you style declarations only;
Code:
#wrap {
width: 750px;
margin: 0 auto;
background-color: #fff;
position: relative;
z-index: 0;
}
Also, change the doctype from <html xmlns="http://www.w3.org/1999/xhtml"> to <!doctype html> to get the page out of quirks mode (as John recommended) and that should improve things in IE.
Bookmarks