$(document).ready(function(){
  $('#contact').click(function(){$('#contact_form').show();});
  $('#hide_contact').click(function(){$('#contact_form').hide();});
  $('#param').attr("value", 47 * 419);
	var phone_prologue = '<span style="color: green; font-size: medium; font-weight: bold">';
	var phone_epilogue = '</span>';
	var phone_numbers = [
		'(310) 481-4381',
		'(310) 481-4379',
		'800-748-MOVE (6683)',
		'800-644-8366',
		'310-729-0719',
		'310-316-8464 ext. 357',
	];
	for (var i = 0; i < phone_numbers.length; i++) {
		$('#contact_details_' + (i+1) + '_livenow').html('Live agent standing by! <br /> ' + phone_prologue + phone_numbers[i] + phone_epilogue);
		$('#contact_details_' + (i+1)).html('To talk to an agent, call <br /> ' + phone_prologue + phone_numbers[i] + phone_epilogue);
		$('#contact_details_home_' + (i+1)).html('To talk to an agent about this home, call ' + phone_prologue + phone_numbers[i] + phone_epilogue);
		$('#contact_details_property_' + (i+1)).html('To talk to an agent about this property, call ' + phone_prologue + phone_numbers[i] + phone_epilogue);
	}
});