var popup = function(targetElement) {
	alert('Link with href ' + $(targetElement).attr('href') + ' activated');	
};

$(document).ready(function() {
	$.clickOrEnter('a.popup',popup);
	var options = {
	  	newsList: "#popular",
		startDelay: 20
	}
	$().newsTicker(options);
									
});