Yes, but the src attribute looked like it was missing the initial
http:.
In fact, that's not the problem, as that URL does work. The problem lies here in nav.css:
Code:
.menu#nav-primary {
background:url(../images/nav_bkgrnd.jpg)no-repeat;
/*overflow:hidden;*/
width:1000px;
height:145px;
margin:0;
}
You'll see there's no space between the url and no-repeat. This is causing IE8 to fail parsing the background styling. Shove a space in there and give it another go.