
/**
 * Initialisiert den Counter für externe Links
 */
jQuery(document).ready(function() {
	jQuery('.ExternalCount').click(function() {
		jQuery.post(SITEURL+'index.php?action=Count', {
			ID: jQuery(this).attr('id')}, function(data) {
				//alert(data);
			});
	});
});