$(document).ready(function() {
	       $("ul#nav li").hover(function() { //Hover over event on list item
            $(this).find("span").show(); //Show the subnav
            } , function() { //on hover out...
            $(this).find("span").hide(); //Hide the subnav
            });
	        });
