
function localize(){
   var host = window.location.host;
   var telService = $("#tel_service");
   var telService2 = $("#tel_service2");
   var logoURL = $("#logo_url");

   var content = $("#content_1300").html();
   //alert(content);
   //alert(host);
   if (host == "www.delacon.com.au") {
     telService.html("1300 990 999");
     telService2.html("1300 990 999");
     logoURL.attr("href", "http://www.delacon.com.au");
     if (content)
         $("#content_1300").html(content.replace(/1300/g, "1300, 1800"));
   }
   if (host == "www.delaconcorp.com") {
     telService.html("1 646 467 6763");
     telService2.html("1 6464 676 763");
     logoURL.attr("href", "http://www.delaconcorp.com");
     if (content)
         $("#content_1300").html(content.replace(/1300/g, "1800"));
   }

   if (host == "www.delacon.co.uk") {
     telService.html("02070 4379 65");
     telService2.html("02070 4379 65");
     logoURL.attr("href", "http://www.delacon.co.uk");
     if (content)
         $("#content_1300").html(content.replace(/1300/g, "0845, 0800"));
   }
}

