Fail guys are fail!
Think outside the box. This is how I would personally do it because I'm a web-standards kind of guy and I do things thinking minimalistic;
Have 3 backgrounds; Defining your Primary, which would be the brown stuff you got there, then for your menu you have a Blank(Black) and Mouseover(Green).
Define your own menu / bg in CSS something like..
Code:
* {
margin:0px;
padding:0px;
}
html {
background:#000; <--- insert your primary color, just what I do for loading
height:100%;
}
body{
background:#000 url('../images/background.png') no-repeat; <--- background stuffs and primary color
}
.main
{
<-- main container stuffs, maybe a margin:0 px; to center your page -->
}
.menu
{
height:35px;
width:auto;
background:url('../images/blackmenu.png') repeat-y;
}
.menu a
{
color:#fff;
font:16px Georgia;
text-transform:uppercase;
line-height:35px;
margin / padding-right:10px;
margin / padding-left:10px;
}
.menu a:hover{
background:url('../images/greenmenu.png') repeat-x;
}
Then your html would be something along the lines of..
Code:
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Portfolio stuff of weird guy</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!--[if lt IE]>
<link rel="stylesheet" href="css/ie.css" type="text/css" />
<![endif]-->
</head>
<body>
<div id="main">
<div class="menu">
<p>
home
<a href="#about" title="About">about</a>
<a href="#gallery" title="Gallery">gallery</a>
<a href="#portfolio" title="Portfolio">portfolio</a>
<a href="#contact" title="Contact">contact</a>
</p>
</div>
</div>
</body>
</html>
Off the top of my head, but that's how I would do it; It's nice, simple very clean and web-standards.
EDIT: Also never use dreamweaver or anything; It blows and slicing / table templates are broken. Don't use tables for templates and don't lose yourself in DIVs.
Keep it clean, and I suggest reading up on a site regularly like http://cssglobe.com ; Just good practice and stuff.