$(document).ready(function(){
	$('#navigation > li a.menu-head').live('click',function() {
		$('#navigation > li.menu-active > ul.menu-sub li').removeClass('current')
		$('#navigation > li > a.menu-head-active').removeClass('menu-head-active').addClass('menu-head').parent().children('ul.menu-sub').animate({height: 'toggle'}, 300);
		$('#navigation > li.menu-active').removeAttr('class');
		$(this).removeAttr('class').addClass('menu-head-active').parent().addClass('menu-active');
		$(this).parent().children('ul.menu-sub').animate({height: 'show'}, 300);
		return false;
	});
});


