I pretty much agree with what everybody else has been saying... besides that freewebs kid though.
Site takes too long to load, and it'd be better if you just embedded your youtube videos into the site.
How to get the selection thing to go away? That just takes a bit of CSS. You make this line:
<div align="center">
Become
<div id="content" align="center">
Then you make a CSS file called styles.css (or whatever you want, but styles is logical), in it you put:
#content
{
outline-style:none;
}
That's all, this file goes into the main directory where Movies.htm and everything else is...
Then inside all of your page files you just do:
<link rel="stylesheet" type="text/css" href="http://www.moonlp.com/styles.css"/>
that's inside your <head> tags
I don't use a relative link because that styles file shouldn't be going anywhere AND all your pages will be using that same thing for now anyways.
But you really shouldn't make the page reload everytime you go to a new section, it justs too long of a load time.