

function navigate(poA){
	var $anchor = $(poA);
	var url = $anchor.attr('href');
	$('#content').load(url);
	return false;
}