$(document).ready(function() {

		$('#mainCtaLink').click(function(event) {

				anchorTag = event.target;
				var urlToGo = $(this).attr('href');

				$(this).attr({ 'href': 'javascript:void(0)' })

				// Pass the product into the query string e.g. SourcePage=Cable etc.
				// Valid vallues: Internet, Cable, VOIP, Bundled
				var product = '';
				var prodDiv = document.getElementById("mainOfferCopy");
				var iconIndex = prodDiv.innerHTML.indexOf('mainOfferIcon');
				var iconType = prodDiv.innerHTML.charAt(iconIndex + 13);
				switch (iconType) {
						case '1':
								product = 'VOIP';
								break;
						case '2':
								product = 'Cable';
								break;
						case '3':
								product = 'Internet';
								break;
						case '4':
								product = 'Bundled';
								break;
				}
				if (product != '') {
						urlToGo += '?SourcePage=' + product;
				}
				document.location.href = urlToGo;
				//setTimeout("document.location.href='" + urlToGo + "'", 1000);

		});
});