// JavaScript Document
$(document).ready(function() {
	$.getJSON("/elements/mortgagedata.php", function(json){
	  //alert("JSON Data: " + json.response['today']['thirtyYearFixed']);
	  $("#thirtyYearFixed").html(json.response['today']['thirtyYearFixed']+"%");
	  $("#fifteenYearFixed").html(json.response['today']['fifteenYearFixed']+"%");
	  $("#fiveOneARM").html(json.response['today']['fiveOneARM']+"%");
	});
	$("#formbuttons").html('<a href="#" onclick="document.forms[\'contactform\'].reset();">Reset Form</a> <a href="#" onclick="document.forms[\'contactform\'].submit();">Send Message</a>');
	$("#mlssearchform #formbuttons").html('<a href="#" onclick="document.forms[\'mlssearchform\'].reset();">Reset Form</a> <a href="#" onclick="document.forms[\'mlssearchform\'].submit();">Search</a>');
});