I am looking to fade in an img (#bgimg) on mouseover of each individual anchor in my main nav. I would like a different img for each anchor. I am using the plug-in Fullscreenr and have four different img's each relating to a link with-in my main nav. On mouseout I would like it to go back to the original img. I only want to do this on my home page. Below is a link to the page I would like to use it on and a snip-it of my mark-up:
http://tamedia.ca/marlowe/home.html
<body>
<img id="bgimg" src="img/bg-home.jpg" />
<div id="container">
<header>
<nav>
<ul>
<li><a href="brand.html">BRAND</a></li>
<li><a href="collection-aw12.html">COLLECTION</a></li>
<li><a href="boutiques.html">BOUTIQUES</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</nav>
</header>
</div>
</body>