﻿$(document).ready(function () {

    LoadFooter();

});



function LoadFooter()
{
    
    var htmlFooter = '<center>';
    htmlFooter += 'Beck\'s Landscape Contracting<br />';
    htmlFooter += 'Elizabethtown, Pennsylvania<br />';
    htmlFooter += '717.587.1700';
    htmlFooter += '</center>';
    
    $("#Footer").append(htmlFooter);
}
