jQuery.noConflict();

function overloadClick() {
	jQuery(".menulink").unbind() // remove old handlers
	jQuery(".menulink").click(function() {
			jQuery("#content").html("<div class=\"\"<img src=\"images/loading.gif\" alt=\"loading page\" /></div>")
			url = this.href
			page = url.split("p=")[1]
			if(!page) {
				page = "default"
			}
			jQuery.get('content/' + page + '.php', function(data) {
					jQuery("#content").html(data)
					overloadClick() // overload any new links
					});
				
				return false
			})
	}
jQuery(document).ready(function(){
		overloadClick()
	})