// JavaScript Document
jQuery(function(){
	/*------- navigation -------*/
		var sPath = window.location.pathname;
		var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
		
	jQuery('.top_nav li').hover(function(){
		
		var index = jQuery('.top_nav li').index(this);
		
		if(jQuery(this).children('ul').length != 0)
		{
			
			jQuery(this).children('ul').show();			
			jQuery(this).children('ul').css({ zIndex: '100'});
			jQuery(this).find('a').addClass('active');
		}
	});
	jQuery('.top_nav li').mouseleave(function(){
			jQuery(this).children('ul').hide();
			jQuery(this).find('a').removeClass('active');
			if(sPage == 'index.html')
		  	 jQuery('.top_nav li:nth-child(1) a').addClass("active");
		   else if(sPage == 'about.html')
			jQuery('.top_nav li:nth-child(2) a').addClass("active");
		   else if(sPage == 'news.html')
			jQuery('.top_nav li:nth-child(3) a').addClass("active");
		   else if(sPage == 'fundraisers.html')
			jQuery('.top_nav li:nth-child(4) a').addClass("active");
		   else if(sPage == 'how-we-help.html')
			jQuery('.top_nav li:nth-child(5) a').addClass("active");
		   else if(sPage == 'support_us.html')
			jQuery('.top_nav li:nth-child(6) a').addClass("active");
		   else if(sPage == 'contactus.html')
			jQuery('.top_nav li:nth-child(7) a').addClass("active");
		 
		   

	});	
	
});

