$(document).ready(function() {	
	$("a").click(function() {
		var url = this.href;
		if ($('input[name=suscribe]')[0].defaultValue == "true" && this.href.indexOf(location.host) == -1) {
			jConfirm('¿Desea subscribirse a este blog y recibir por mail las actualizaciones?', 'Subscripción', function(r) {
				if( r ) {
					$.post("/", { suscribe: "true" } );
					jAlert("Te has suscrito a este blog");
					open(url, '_top');
				} else {
					open(url, '_top');
				}
			});
		}
		return false;
	});
});