$(document).ready(function(){
	
	$(".navSub").hide();
	$(".nav div").mouseover(function(){
		$("#"+this.id).addClass("active");
		$("#navSub_"+this.id).show();
	});
	$(".nav div").mouseout(function(){
		$("#"+this.id).removeClass("active");
		$("#navSub_"+this.id).hide();
	});
	
});
