﻿// JavaScript Document
//home quote
$(document).ready(function() {
	$.getJSON('includes/get_quote.php?type=index_ah&jsoncallback=?', function(data) {
		$("#ahLoading").hide();
		$("#indexAhQuote").html(data["ah"]);
	});
	$.getJSON('includes/get_quote.php?type=index_adr&jsoncallback=?', function(data) {
		$("#adrLoading").hide();
		$("#indexAdrQuote").html(data["adr"]);
	});
	$.getJSON('includes/get_quote.php?type=index_hki&jsoncallback=?', function(data) {
		$("#hkiLoading").hide();
		$("#indexHkiQuote").html(data["hki"]);
	});
	$.getJSON('includes/get_quote.php?type=index_cni&jsoncallback=?', function(data) {
		$("#cniLoading").hide();
		$("#indexCniQuote").html(data["cni"]);
	});
	$.getJSON('includes/get_quote.php?type=index_ini&jsoncallback=?', function(data) {
		$("#iniLoading").hide();
		$("#indexIniQuote").html(data["ini"]);
	});
	$.getJSON('includes/get_quote.php?type=index_ex&jsoncallback=?', function(data) {
		$("#exLoading").hide();
		$("#indexExQuote").html(data["ex"]);
	});
	$.getJSON('includes/get_quote.php?type=index_mc&jsoncallback=?', function(data) {
		$("#mcLoading").hide();
		$("#indexMcQuote").html(data["mc"]);
	});
});
