jQuery(document).ready(function(){

	if (location.href.search("gclid") == -1) {
		return false;
	}

	var url = location.href.split("gclid");
	var host = location.host;
	
	jQuery("a, area").each(function() {
	
  		var a = this;

		if (this.href != undefined) {

  			var search_href = a.href.search("=");
  		
			if(search_href=="-1"){
     			var href = a.href.split(host);
     		
				if(href[0]=="http://"){
     				a.href = a.href + "?gclid" + url[1];
   				}
  			}
  		
			else{
     			var href = a.href.split(host);
     
				if(href[0]=="http://"){
     				a.href = a.href + "&gclid" + url[1];
   				}
  
			}
		}
	});
});
