﻿$(document).ready(function() {

    Check_Set_Cookies();
    //alert($.cookie("PhoneNumberCookie"));
    if ($.cookie("PhoneNumberCookie") != null) {
        var ExistingCookie = $.cookie("PhoneNumberCookie")
        //alert("existing cookie a: - " + ExistingCookie);
       
        //?GooglePPC+HulJag=01482 627 300    HulJag=0844 846 5305
        $('body').html($('body').html().replace(eval("/01482 627 300/g"), "0844 846 5305"));

        //?GooglePPC+LivJag=0151 728 2004    LivJag=0844 846 5311
        $('body').html($('body').html().replace(eval("/0843 309 6228/g"), "0844 846 5311"));

        //?GooglePPC+LivLan=0151 728 2000    LivLan=0844 846 5312
        $('body').html($('body').html().replace(eval("/0151 728 2000/g"), "0844 846 5312"));

        //?GooglePPC+SheJag=0114 268 4741    SheJag=0844 846 5316
        $('body').html($('body').html().replace(eval("/01142 684 741/g"), "0844 846 5316"));

        //?GooglePPC+WakJan=01924 381 111    WakJan=0844 846 5320
        $('body').html($('body').html().replace(eval("/01924 381 111/g"), "0844 846 5320"));

        //?GooglePPC+ShrJag=01743 234 300    ShrJag=0844 846 5323
        $('body').html($('body').html().replace(eval("/01743 234 300/g"), "0844 846 5323"));

        //?GooglePPC+WorJag=01905 346 800    WorJag=0844 846 5334
        $('body').html($('body').html().replace(eval("/01905 346 800/g"), "0844 846 5334"));

        //?GooglePPC+YorHyu=01904 600 600    YorHyu=0844 846 5337
        $('body').html($('body').html().replace(eval("/01904 600600/g"), "0844 846 5337"));

        //?GooglePPC+StoHyu=0161 432 4790    StoHyu=0844 846 5343
        $('body').html($('body').html().replace(eval("/0161 432 4790/g"), "0844 846 5343"));

        //?GooglePPC+BurVol=0161 767 2401    BurVol=0844 846 5351
        $('body').html($('body').html().replace(eval("/0161 767 2401/g"), "0844 846 5351"));

        //?GooglePPC+BurHyu=0161 767 2406    BurHyu=0844 846 5352
        $('body').html($('body').html().replace(eval("/0161 767 2406/g"), "0844 846 5352"));

	//?GooglePPC+YorMit=01904 600625     YorMit=0844 846 5343
	$('body').html($('body').html().replace(eval("/01904 600625/g"), "0844 846 5343"));
    }


    function Check_Set_Cookies() {
        var cookies = {};
        //alert("Initial Check set cookies check -" + $.cookie("PhoneNumberCookie"));
        if ($.cookie("PhoneNumberCookie") != 0 && $.cookie("PhoneNumberCookie") != null) {           
            cookies = $.cookie("PhoneNumberCookie");           
        }
        else {
            $.urlParam = function GetQuerystringvalues(name) {
                var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(window.location.href);
                if (!results) { return 0; }
                return results[1] || 0;
            }
            var GoogleCode = $.urlParam('id');
            //alert("check set cookies ELSE-" + GoogleCode);
            //check if the GoogleCode variable has a value other than 0. if it does then create the cookie for the querystring param provided
            if (GoogleCode != 0) {
               // alert("setting new cookie with:" + GoogleCode);
                $.cookie("PhoneNumberCookie", GoogleCode, { path: '/', expires: 30 });  //create cookie and set it to expire in 30 days
                //alert("cookie created- " + $.cookie("PhoneNumberCookie"));
            }
        }
        return cookies;
    }



});
 


