$(document).ready( function() {

	var options = {
		local : true,
		arrows : true,
		cluetipClass: 'nemogroup',
		sticky : false,
		dropShadow : false
	}

	$(".clientes_cell").cluetip(options);

	$(".clientes_cell").click(function(e) {

		e.stopPropagation();

		var
			$this = $(this),
			$link = $("a.external", $this);

		if($link.length > 0) {
			var url = $link.attr("href");
			window.open(url, 'new_window_' + new Date().getTime() );
		}

	});
});
