$(document).ready(function(){ 
	$.get("remote_images/new_func/func.xml",{r:Math.random()},function(data){
		data = data.trim();
	    $("#func_cont").html(new XML(data).$v("info"));
	},"text");
});