﻿/* (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() {
 SetEmailAddress(1);
});

function SetEmailAddress(version) {
    var domain = '@ncalarm.net'; 
    $('#contact').text('sales' + domain);
   $('#contact').attr({ href: 'mailto:sales' + domain}); 
}

function SetEmailAddress2() {
    var domain = '@ncalarm.net'; 
    $('#contact2').text('sales' + domain);
   $('#contact2').attr({ href: 'mailto:sales' + domain}); 
}

