$(function() {
    $("ul#topnav li").hover(function() { //Hover over event on list item
	    $(this).css({ 'background' : '#a29061'}); //Add background color + image on hovered list item
	    $(this).find("span").show(); //Show the subnav
	    $(this).find("span a:first").css("paddingLeft",$(this).position().left); //Show the subnav 
    } , function() { //on hover out...
	    $(this).css({ 'background' : 'none'}); //Ditch the background
	    $(this).find("span").hide(); //Hide the subnav
    });
    $(".mainheaders").parent().css("padding","0px");
    $("ul#topnav li.mainMenuHERE span a:first").css("paddingLeft",$("ul#topnav li.mainMenuHERE").position().left); //Show the subnav 

});
