$(document).ready(function() {
	/*
	$("#paginaExterior a").enlacesExternos({ //mediante selector indicamos a que enlaces queremos aplicar el plugin
		mostrarIcono: true, //mostrar icono si/no (true/false)
		modoImagen: true, //mostrar icono mediante etiqueta "img" tras el enlace (true) o mostrarla mediante bacground del enlace (false)
		rutaIcono: "/img/icons/icon_external.gif", //ruta al icono que se va a utilizar
		mostrarTitle: true, //modificar title del enlace si/no (true/false)
		title: "Este enlace se abrirá en una ventana nueva", //texto que llevará el title nuevo, o, en caso de existir, texto que se añadirá
		abrirVentana: true //abrir enlace en ventana nueva si/no (true/false)
	});
	*/
});