$(document).ready(function () {
	$.PeriodicalUpdater({
		url: "gather.php",
		minTimeout: 5000,
		maxTimeout: 10000,
		method: "post",
		type: "json"
	},
	function(html){
		$('#precio_e_gr').html(html.content1);
		if($("#gold_value").val() == "0") {
			$('#precio_e_gr_old').html(html.content2);
			$('#gold_value').val(html.gold_value);
		}
	});
});
