if ( top.location != location ) { top.location.href = document.location.href; }

function clicktrack() {
	var list = document.getElementsByTagName( 'a' );
	for( var i=0; i<list.length; i++ ) {
		if ( list[i] && list[i].className ) {
			var res = list[i].className.match( /link(\d+)/ );
			if ( res.length == 2 ) {
				list[i].href = 'http://www.topmegasites.com/click.php?id='+res[1]+'&url='+list[i].href;
				list[i].target='_blank';
			}
		}
	}
}

window.onload = clicktrack;

