jQuery(document).ready(function($){
	// set a click handler on all items (children) within #menu...
	$('#menu').children().click(function(event){
			alert("You clicked '"+(this.title||$(this).parent().find('.jqDockLabel').text()||'')+"' <"+this.tagName.toUpperCase()+">");
			this.blur();
			return false;
		});
});

