(function ($) {
	$.fn.insertMenu = function () {
		var pages = [
			{"name": "Home", "url": "/"},
			{"name": "jQuery browser plugin", "url":"/jqplugin"},
			{"name": "jQuery Floatbox", "url":"/floatbox"},
			{"name": "jQuery table search", "url":"/tablesearch"},
			{"name": "jQuery table2csv", "url":"/table2csv"},
			{"name": "jQuery field criteria", "url":"/fcriteria"}
		];
		
		return this.each(function () {
			$("<ul></ul>")
				.each(function () {
					var ul = $(this);
					$(pages).each(function () {
						ul.append("<li><a href='" + this.url + "'>" + this.name + "</a></li>");
					});
				})
				.appendTo(this)
				.find("li").each(function () {
					var url = location.href.split("/")[location.href.split("/").length-1];
					if ($(this).find("a").attr("href").replace("/", "") === url) {
						$(this).addClass("selected");
					}
				}).end()
				.parent().append('<img src="http://code.google.com/appengine/images/appengine-noborder-120x30.gif" alt="Powered by Google App Engine" align="right" />');
		});
	};
})(jQuery);