ivanmax,
You need to rename your index.html_tom page to just index.html. After you have done that, you may want to kill the script that is disabling right clicks. I know I saw a thread here recently trying to protect photos. Was that your thread? If it was, it was mentioned in that thread that you should be very cautious about using scripts like these. The problem here is you make it more difficult to look at your source code to help with problems. You will stop the casual user from getting your photos but you will not stop anybody that really wants them.
Also, the path to your intro.jpg image is wrong. You have:
Code:
<body onload="MM_preloadImages('Templates/intro.jpg')">
But intro.jpg is in the root of your site. It should be:
Code:
<body onload="MM_preloadImages('intro.jpg')">