var AjaxMenu = new Class
(
	{

		id: "",
		target: "",
	
		initialize: function(xml)
		{
			this.target = xml.target;
			this.init();
		},
	
		
		
		init: function()
		{	
			jQuery('#'+this.target+' a').click(
				function()
				{
					jQuery(this).attr('href',jQuery(this).attr('href').split('?').join('#'));
					
					 
				}
			)		
		
		}
	}
)
