// JavaScript Document

$(document).ready(function() {
   // do stuff when DOM is ready
   
   $("ul.navs > li").hover(function(){
	  $("#subnav",this).show();
	},function(){
	   $("#subnav",this).hide();	
	});
   
   
   
   // 
 });

