// Initialise the drop-down navigation.
function initDD() {
	$("#nav_primary > ul > li").hover(
		function (evt) {$("ul", this).fadeIn("fast"); evt.stopPropagation();},
		function (evt) {$("ul", this).fadeOut("fast"); evt.stopPropagation();}
	); // hover
} // initDD
