$(document).ready(function() {
	var pos = window.location.href.indexOf('?') + 1;
	if (pos > 0) {
		var params = window.location.href.slice(pos);
	}
	else {
		var params = 'offerId=10466&utm_source=google&utm_medium=cpc&utm_campaign=trackingwoes';
	}	
	$('a')
	   .each(function() {
			if (this.href.indexOf('?') > 1) {
				this.href = this.href + '&' + params;
			}
			else {
				this.href = this.href + '?' + params;
			}			
	   });
});
