$(document).ready(function() {
													 
	// Find the link that starts its content with About
	$('#menu-main-menu .menu-item a').each(function() {
		if($(this).text().match("^About")=="About") { 
			var theNext = $(this).next();
			$('.menu-item a',theNext).each(function() {
				var currentHref = $(this).attr('href');
				$(this).attr('href',currentHref.substring(0,currentHref.length-1) + "#" + $(this).text());
			});
		}
	});
	
	/*
	$('.submenu .menu-item a').each(function() {
		$(this).attr('href',$(this).attr('href') + "#" + $(this).text());
	});
	*/
	
});

