// http://api.jquery.com/

$(document).ready(function() {
	$('a.card_view_link').bind('click',
		function(e) {
			popup.open($(this).attr("href"));
			e.preventDefault();
		}
	);
});
