// JavaScript Document
$(document).ready(function() {
	//===========================
	//	Groups / Sub Groups Handler
	//===========================
		$('.group_item .ahead').click(function() {
				$(this).next('.subgroups').slideToggle(300);	
				$(this).siblings().next('.subgroups').hide(300);									
				return false;

		}).next('.subgroups').hide();
		
		/*		
		
		$('.group_item .ahead').click(function() {				
				if ($(this).find('a').hasClass('menu_head')) { 
					$(this).find('a').removeClass('menu_head').addClass('amenu_head'); 
				
				} else if ($(this).find('a').hasClass('amenu_head')) { 
					$(this).find('a').removeClass('amenu_head').addClass('menu_head'); 
					
				} else { 
					$(this).find('a').addClass('menu_head'); 
				} 	
			
		});	
		*/
	
});

