That is happening, because of your HTML errors such as missing a <html xmlns="http://www.w3.org/1999/xhtml"> tag right after your doctype, a <body> tag, an extra </div> tag and you have open comment tags that you haven't closed.
Your code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>J A S O N V I L L A P H O T O G R A P H Y</title>
<script type="text/javascript" src="swfobject.js"></script>
<style type="text/css">
<!--
html {
height: 100%;
overflow: hidden;
text-align: center;
padding: 0;
margin: 0;
}
#header {
background-image: url(images/header.jpg);
background-repeat: no-repeat;
background-position: center top;
height: 116px;
padding: 0;
}
#flashcontent {
height: 100%;
}
</style>
</head>
<div id="header"><img src="images/headermap.png" width="800" height="116" border="0" usemap="#Map" />
<map name="Map" id="Map"><area shape="rect" coords="729,40,800,61" href="mailto:info@jasonvilla.com" /><area shape="rect" coords="692,73,800,94" href="/music" /><area shape="rect" coords="611,73,681,94" href="/places" /><area shape="rect" coords="524,73,601,94" href="/product" /><area shape="rect" coords="408,73,513,94" href="http://www.jasonvilla.com/website/commercial" />
<area shape="rect" coords="0,20,308,112" href="http://www.jasonvilla.com/website" />
<area shape="rect" coords="320,73,391,94" href="/fashion" />
</map>
</div>
<div id="flashcontent">AutoViewer requires Adobe Flash. <a href="http://www.macromedia.com/go/getflashplayer/">Get Adobe Flash.</a> If you have Flash installed, <a href="index.html?detectflash=false">click to view gallery</a></div>
<script type="text/javascript">
var fo = new SWFObject("viewer.swf", "viewer", "100%", "80%", "8", "#FFFFFF" );
fo.addParam("quality", "best");
fo.write("flashcontent");
fo.addVariable( "langOpenImage", "Open Image in New Window" );
fo.addVariable("langAbout", "About");
</script>
</div>
</body>
</html>
Should be:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>J A S O N V I L L A P H O T O G R A P H Y</title>
<script type="text/javascript" src="swfobject.js"></script>
<style type="text/css">
//<![CDATA[
html {
height: 100%;
overflow: hidden;
text-align: center;
padding: 0;
margin: 0;
}
#header {
background-image: url(images/header.jpg);
background-repeat: no-repeat;
background-position: center top;
height: 116px;
padding: 0;
}
//]]>
#flashcontent {
height: 100%;
}
</style>
</head>
<body>
<div id="header"><img src="images/headermap.png" width="800" height="116" border="0" usemap="#Map" />
<map name="Map" id="Map"><area shape="rect" coords="729,40,800,61" href="mailto:info@jasonvilla.com" /><area shape="rect" coords="692,73,800,94" href="/music" /><area shape="rect" coords="611,73,681,94" href="/places" /><area shape="rect" coords="524,73,601,94" href="/product" /><area shape="rect" coords="408,73,513,94" href="http://www.jasonvilla.com/website/commercial" />
<area shape="rect" coords="0,20,308,112" href="http://www.jasonvilla.com/website" />
<area shape="rect" coords="320,73,391,94" href="/fashion" />
</map>
</div>
<div id="flashcontent">AutoViewer requires Adobe Flash. <a href="http://www.macromedia.com/go/getflashplayer/">Get Adobe Flash.</a> If you have Flash installed, <a href="index.html?detectflash=false">click to view gallery</a></div>
<script type="text/javascript">
var fo = new SWFObject("viewer.swf", "viewer", "100%", "80%", "8", "#FFFFFF" );
fo.addParam("quality", "best");
fo.write("flashcontent");
fo.addVariable( "langOpenImage", "Open Image in New Window" );
fo.addVariable("langAbout", "About");
</script>
</body>
</html>
Mike Richards
SimpleViewer Support Team.