
var ck4t_client = {

	tag :	'*',
  classname :	'canoe_hyperklix_text',
  mode : 'zonegraph',
  linked_words : ['compare acura tl','change tire','windshield','pickup','focus','used audi cars','mazda6 sport wagon','toyota','repair','used car price','luxurious car','travel','motorcycle','dealership','condo','ride','accident vehicle','lincoln','tundra','all season','santafe','bridgestone tire','wheel','winter tire prices','convertible','4x4','automotive tires','music','classifieds','cheap car','mercedes','personal','rendez-vous','ion','real estate','equinox','a4','fx350','tsx','store','sound system','used rdx','pick up','tl special','metropolitain','yellowhead honda','engine','porche','sedan','24karat lease','lexus','sky','q7','mortgage','sorento','lexus edmonton','motorcycle.com','sale','rl','instant insurance quote','car parts','event','mazda3','used tl','pick-up','a8','dodge','traction','blog','infiniti','car rental','hybrid','accident claims','forester','element','porsche','tire','bmw','entertainment','audi','saturne','cruiser price','acura','view acura tl','cayenne','financing','car review','celebration','tire change','2007tsx price','hibryd','4wd','find used cars','mpg','santa fe','vehicle','used crv','automobile tire','new acura tl event','firestone','cooper tires','surround sound','test drive acura rdx','use','jimmy','garage sales','landrover','2wd','wipper','odyssey','west side mitsubishi','trailblazer','computer','chrysler','lowest price in canada','gm','winter tire','college','auto trader','cars for sale','truck','tires snow','motor cycle.com','competition chevrolet','new cars','used vehicle','pathfinder','2007tsx review','use car metropolitain','sport utility','tl sport acura','yukon','jeep','gti','car quote','new acura rdx event','vw','chevrolet','volvo','claim insurance','auto glass','auto dealer','car dealers','new acura tl history','professional association','luxuary car','test ride','dayton tires','student','saturn','nice car','bridgestone','best car','kia','2007tsx part','used automobile','commercial insurance','mp3','new acura rdx','x5','honda cbr600f4i','car sale','rdx','auto','used acura tl','els','used auto','used acura rdx','investment','duval mazda','car','automaker','view acura tsx','2007tsx picture','inventory','civic','duval mazda boucherville','hummer','new acura tl','xc90','acura galleries','elderly','automobile','van','2007tsx news','all terrain tires','buying tires','compare insurance quotes','good car','suv','lowest price canada','continental tires','cherokee','gmc','atv tires','don wheaton chevrolet','cycles','loan','get an insurance quote','retailer','fx45','dealer','mazda','ml350','2007tsx preview','mini','acura web site','wiper','used car','motor','mazda3 sport','saab','buy acura','subaru','tune up','rent car','suround','compare acura rdx','tl sedan','honda cbr1000rr','corvette','fx35','type s','cadillac','premium companies','view acura rdx','prestone','luxury','minivan','free ads','r8','madza','garage','test drive','echo','free insurance quote','suzuki','tl sport','premium','standard acura rdx','bicycle tires','car dealer','mdx used','home services','mazda6','autonet','car tires','all season tires','a6','co insurance','acura canada','gas mileage','find used cars sale','buy car','torrent','policy claims','sportage','buy tires online','lebeau','honda chf50','2007tsx special','tucson','insurance','pacifica','2007tsx interior','nissan','hyundai','tire dealers','automotive','price selection','acura on line','volkswagen','all wheel','honda','honda cbr600rr','escape','premium sound','volks','lebeau auto','mercury','ml500','golf','road test','mazda tribute 4wd','mini-van','home','camry','mazda6 sport','2007tsx release','group insurance','ford','cottage','crv','durango','policy premium','cayene','car dealership','4x4 tires','best tire dealers','discount tire','discount car rental','jaguar','elantra','used cr-v','volks wagen','land rover','cheroke','motor cycle','sherwood kia','buy tires','car online','vus','use car','mdx','residential','all wheel drive','convert','auto repair','cars com','weel','alumni','bank','house','awd','buick','lebeau montreal','sports utility vehicle','compare tires','get insurance quote','university','mitsubishi','csx','2007tsx report','xterra','grand prix','tl','west side acura','auto zone','taco','pontiac','cr-v','leather seats','new car'],
		
	loadCSS :	function(file_url)
	{		
	  var css = document.createElement('link');
	  css.rel = 'stylesheet';
	  css.type = 'text/css';
	  css.href = file_url;
	  
	  document.body.appendChild(css);
	},
	
	start :	 function() {
	  var oldonload = window.onload;
	  var self = this;
	  if (typeof (window.onload) != 'function') {
	    window.onload = function(){self._onload.call(self);}
	  }
	  else {
	    window.onload = function(){oldonload(); self._onload.call(self);}	
	  }
	},
	
	_browserHacks : function()
	{	
    if ( this.tag && this.tag != '*' ) {
      if ( window.ActiveXObject ) {
        var tag = this.tag.split(':');
        var prefix = tag[1]? tag[0] :	'canoeklix';
        document.body.innerHTML = '<html xmlns:'+ prefix + '>' + document.body.innerHTML;
	    
        if ( !tag[1] ) {
          var r1 = new RegExp('<'+ this.tag +'>', 'gi');
          var r2 = new RegExp('<\/'+ this.tag +'>', 'gi');
          document.body.innerHTML = document.body.innerHTML.replace(r1, "<canoeklix:"+ this.tag +">").replace(r2, "</canoeklix:"+ this.tag +">");
        }	
        else
          this.tag = tag[1];
      }
      else if ( typeof document.loadBindingDocument == 'function' ) {
        if ( document.getElementsByTagName(this.tag)[0] )
          this.tag = 'body';	
      }
    }
	},
	
	_onload :function()
	{
		this._browserHacks();
	
	  this.loadCSS('http://static.search.canoe.ca/s-ppc/css/hyperklix/default.css');

    var script = document.createElement('script');
    script.src = 'http://static.search.canoe.ca/s-ppc/js/hyperklix/HyperklixParser.js?v2';
    script.type = 'text/javascript';
	
		document.body.appendChild(script);
	},
	
	callback : function()
	{ 
		var parser = new HyperklixParser(this.tag, this.classname);

    if ( this.mode == 'zonegraph' ) {
      parser.findWords(this.linked_words);
    }
    else {
	    parser.parseDocument();
    }

    this.callServer(parser.wordlist);    
	},

  callServer : function(words)
  {
    var strw = '';
    for(var i=0; i < words.length; i++)
      strw += 'ch[' + i + ']=' + words[i] + '&';

    var script = document.createElement('script');
		script.src = 'http://www.canoeklix.com/hyperklix_server?8802226564c8065f76114f&src=hyperklix:autoneten&lg=en&charset=cp1252&tag='+this.tag+'&classname='+this.classname+'&filter=autoneten&nads=2' + '&' + strw ;
		script.type = 'text/javascript';
		script.id = 'loadScript';
		document.body.appendChild(script);
  }
}	

ck4t_client.start();

