// GALLERY NAV
	featuredcontentslider.init({
	id: 'slider1',
	contentsource: ['inline', ''],
	toc: '#increment',
	nextprev: ['', '&raquo;'],
	revealtype: 'click',
	enablefade: [true, 0.1],
	autorotate: [false, 5000],
	onChange: function(previndex, curindex){
	}
	})

// LINKS EXTERNOS
  	$(function() {
		$("a[rel*='external']").click(function(){
   		this.target = "_blank";
		});
	});

// REMOVE TITLE ATTRIBUTES
	$(document).ready(function() {
		$("a[rel*='category']").each(function() {
		$(this).removeAttr('title');
		});
	});
