jQuery(document).ready(function(){
jQuery.ajax({
	type: "GET",
	url: "/jqueryloadmenu.php",
	data: '',
	success: function(msg){
		jQuery("div#jqueryloadmenu").html(msg);
	}
});
});

