function send_offer_request(){
	$.ajax({
		type: "GET",
		url: "/offers/ajax_offer/",
		success: function(html){
			if (html){
				$("#offer_block").html(html)
				/*update_offer();*/
			}
		}
	});
}

function update_offer(){
	$("#button1").click(function(){
		send_offer_request();
		return false;
	});
	$("#button2").click(function(){
		send_offer_request();
		return false;   
	});
}

$(document).ready(function(){
	update_offer();
});