// JavaScript Document

//nav		   
$(function(){
 $(".nav .navLi").hover(function(){
	$(this).children(".subNav").show().end().siblings().children(".subNav").hide();	
	$(this).children(".navA").addClass("hover").end().siblings().children(".navA").removeClass("hover");
  },function(){
	 $(this).children(".subNav").hide();	
	 $(this).children(".navA").removeClass("hover");
 });
		   
});

