// FUNCIÓN PARA LOS ENLACES.

function work(id) {
	$.ajax({
	   url:"site/inc/works.php",
	   data:"id="+id,
	   success: function(datos) {
		   $("#works").html(datos);
	   }
   });
};



// FUNCIÓN PARA OCULTAR LOS BOTONES '-' Y '+' DEL PAGINADOR. 

function onAfter(curr, next, opts) {
    var index = opts.currSlide;
    $('#pagerPrev')[index == 0 ? 'hide' : 'show']();
    $('#pagerNext')[index == opts.slideCount - 1 ? 'hide' : 'show']();
}



// ENLACES EXTERNOS.

function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
		anchor.getAttribute("rel") == "blank")
	anchor.target = "_blank";
 }
}
window.onload = externalLinks;