I haven't logged on the server or so, but I was really disappointed of what I've seen on the website... You could have accomplished the same effect of style by using CSS instead of placing images one over another...
If using CSS and the images you placed are going one behind another then just use "overflow: hidden" =/
At least that's my expression.
EDIT: And also you could center your website since 75% of visitors have higher resolution than the website design.
You can achieve that by adding a #wrap
Code:
#wrap { width:900px; margin:0 auto; } /* "auto" makes the left and right margins center the wrapper */
If adding that don't forget to add the wrap div after the <body> tag.