$(function(){
	$('#menu-inner a').each(function(){
		var that = $(this);
		
		if(that.parent().children('ul').length > 0) {
			that.attr('href', that.parent().children('ul').children('li:first').children('a').attr('href'));
/*
			that.toggle(function(){
				return menuToggle(that, false);
			}, function(){
				return menuToggle(that, true);
			});
*/
		}
	});

	function menuToggle(that, flag) {
		if(that.hasClass('open') == flag) {
			that.parent().children('ul').slideDown();
		} else {
			that.parent().children('ul').slideUp();
		}
		return false;
	};
});

