$(function () {
	
	// Initialise the menu
	$("ul.menu").ablMenu({
		xOffset : -14,
		highlightLink : true
	});
	
	// Open all external links in a new window..
	// $("a[href^='http://']").attr("target", "_blank");
	
	// Add title attribute to images for better accessibility
	$("img[alt]").each(function() {
		if ((!this.title)||(this.title.length < 1)) {
			this.title = this.alt;
		}
	});
	
});