

 /* jQuery(document).ready(function($) {
    // Code that uses jQuery's $ can follow here.
  });*/
  // Code that uses other library's $ can follow here.
  


jQuery(document).ready(function() {
	
jQuery("ul#topnav li").hover(function() { //Hover over event on list item
	jQuery(this).css({ 'background' : '#2F1709 url(topnav_active.gif) repeat-x'}); //Add background color + image on hovered list item
	jQuery(this).find("span").show(); //Show the subnav
} , function() { //on hover out...
	jQuery(this).css({ 'background' : 'none'}); //Ditch the background
	jQuery(this).find("span").hide(); //Hide the subnav
});
	
});
