// Aon submenu
// Created by Juda van Mourik, 2008
// Only to be used in Aon Products



// options are not implemented in this release
jQuery.fn.aonquicklinks = function(options) {
		
	this.find("li").each(function() {
					
			// Get target
			var loc, id;
			loc = new String(trim($(this).html()));
			
			// Generate html
			$(this).html("<a href='" + loc + "'>" + $(this).attr("title") + "</a>");
		});
}