$(document).ready(function() {
	
	$('a[rel$="external"]').click(function(){
		window.open(this.href);
        return false;
	});
	$("a.masInfo").enlacesExternos({
	   mostrarIcono: false,
	   modoImagen: false,
	   rutaIcono: "",
	   mostrarTitle: true,
	   title: "Este enlace se abrirá en una ventana nueva",
	   abrirVentana: true
	});	
	$("#slider").easySlider({
		controlsBefore:	'<div id="controls">',
		controlsAfter:	'</div>',
		auto: true,
		speed: 800,
		pause: 3000,
		continuous: true,
		prevText: '',
		nextText: ''
	});
});