$(document).ready(function() {
	$("#refresh").click(function() {
        $.ajax({
            type: "GET",
            url: window.location.pathname + '',
            data: "refresh=1",
            success: function(xml){
                $("#_img").attr("src", $("src",xml).text());
                return false;
            }
        });
	});
});

