$(document).ready(function () {
	
	$('a[rel=aMenu]').click(function () {
		
		//clear the selected class and add the class class to the selected link
	 	$('a[rel=aMenu]').removeClass('aboutSelected');
	 	$(this).addClass('aboutSelected');
	 	
		//cancel the anchor tag behaviour
		//return false;
	});	
});
