Find this in your code:
Code:
div.sdmenu div {background: url(title.gif) repeat-x;overflow: hidden;}
This controls the background of the first menu,
Find this in your code:
Code:
div.sdmenu div:first-child {background: url(toptitle.gif) repeat;}
This controls the second menu 
If you wish to have a blue and red background respectively, then changing it to background color or a new background instead:
Code:
div.sdmenu div{background:#00f;overflow:hidden;}
Code:
div.sdmenu div:first-child{background:#f00;}
See if it helps
Bookmarks