﻿/* (C) Copyright 2009 by LogicalMatrix. Author: Nalin D.Jayasuriya. */
/* This code is protected by copyright laws. No portion of this website can be copied or modified by any means  */

$(document).ready(function() {
 SetEmailAddress1();
 SetEmailAddress2();
});


function SetEmailAddress1() {
    var domain = '@live.com'; 
    $('#contact1').text('gppc-cppg');
    $('#contact1').attr('href', 'mailto:gppc-cppg' + domain  +   '?subject=Query from website');
}
 
 
function SetEmailAddress2() {
    var domain = '@live.com'; 
    $('.joinUsEn').attr('href', 'mailto:gppc-cppg' + domain  +   '?subject=Request to join THE GATINEAU PARK PROTECTION COMMITTEE&body=Please include the following details in your request to join us.%0A%0AFirst name(s):%0A%0ALast name:%0A%0APostal address:%0A%0AComments:%0A%0A');
    $('#joinUsEn').text('Join us');
    $('.joinUsFr').attr('href', 'mailto:gppc-cppg' + domain  +   '?subject=Demande de joindre LE COMITÉ POUR LA PROTECTION DU PARC DE LA GATINEAU&body=Veuillez inclure les détails suivants dans votre demande de nous joindre.%0A%0APrénom:%0A%0ANom:%0A%0AAdresse:%0A%0ACommentaires:%0A%0A');
    $('#joinUsFr').text('Les membres');
}

