// JavaScript Document
//menu
$(document).ready(function() {
	$("#nav>li>a").mouseover(function(){
		var cont=$(this).next().html();
		$("#subNav").html(cont).show();
	});
	$("#nav").mouseout(function(){
	});
	

});
