// --------------------------------------------------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------------------------------------------------
// behaviours - Marks up document with ARIA Roles;
// depends: 	jQuery library;
// author:		nr;
// --------------------------------------------------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------------------------------------------------

(function setUpAriaRoles() {
	$("#sitewideNav").attr("role", "navigation");
	$("#header").attr("role", "banner");
	$("#bd").attr("role", "main");
	$("#footer").attr("role", "contentinfo");
})();

// --------------------------------------------------------------------------------------------------------------------------------
// --- end of file --- 
// -------------------------------------------------------------------------------------------------------------------------------

