
//Scripts for Aero Mortgages rate and date display

rateInfo=new Array
// Enter the 6 month rate between the quotations below.
rateInfo[6]="5.10"
// Enter the 1 year rate between the quotations below.
rateInfo[1]="3.25"
// Enter the 2 year rate between the quotations below.
rateInfo[2]="4.30"
// Enter the 3 year rate between the quotations below.
rateInfo[3]="3.95"
// Enter the 4 year rate between the quotations below.
rateInfo[4]="4.14"
// Enter the 5 year rate between the quotations below.
rateInfo[5]="3.99"
// Enter the 7 year rate between the quotations below.
rateInfo[7]="5.70"
// Enter the 10 year rate between the quotations below.
rateInfo[10]="6.00"




































//Current date script

function write_date()
{
monName=new Array ("January","February","March","April","May","June","July","August","September","October","November","December")

now=new Date

document.write("Rates as of "+monName[now.getMonth()]+" "+now.getDate()+", "+now.getFullYear()+".");
}
