// JavaScript Document

$(function(){
	$('.nav > li').hover(
		   function(){
			   	$(this).addClass('active');
			   	$(this).children('ul').show();
			   },
		   function(){
			   $(this).removeClass('active');
			   $(this).children('ul').hide();
			   }
	);	
	
	$('li.haspopout').hover(
		   function(){
			   	$(this).addClass('active');
			   	$(this).children('ul').show();
			   },
		   function(){
			   $(this).removeClass('active');
			   $(this).children('ul').hide();
			   }
	);
/*	alert($('li.haspopout>a').length);*/
	$('li.haspopout>a').addClass("popoutarrow");

	
// for the top links drop down
	$(".menu > li").hover(
		function() {
			$(this).addClass("active");
			$(this).children('ul').show();
		},
		function() {
			$(this).removeClass('active');
			$(this).children('ul').hide();
		}
	);
});
