// JavaScript Document
$(document).ready(function() {
	
$("ul#topnav li").hover(function() { //Hover over event on list item
	$(this).css({ 'background' : '#fdfbf1 url(images/topnav_stretch2.jpg) repeat-x'}); //Add background color + image on hovered list item
	$(this).find("span").slideDown(); //Show the subnav
} , function() { //on hover out...
	$(this).css({ 'background' : 'none'}); //Ditch the background
	$(this).find("span").fadeOut(); //Hide the subnav
});
	
});

