$(document).ready(function() {
	
	$.each($('a[rel="externo"],a.externo,a[rel="out"],a.out'),function(){
		$(this).attr('target','_blank');
	});
	
	//highslide
	if (loaded_highslide){
		$.each($("a.hs"),function(){
			$(this).bind('click',function(){
				return hs.expand(this);
			});
		});
		
		hs.registerOverlay({
			overlayId: 'closebutton',
			position: 'top right',
			fade: 2
		});
		hs.graphicsDir = 'media/img/graphics/';
		hs.wrapperClassName = 'borderless';
		hs.captionEval = 'this.thumb.alt';
	}
	
	//lightbox
	if (loaded_lightbox){
		$('a.lb, a.lightbox').lightBox();
	}
	
});
