// JavaScript Document
$(document).ready(function(){
	//Links Continuar Leyendo
	$('a.more-link').html('Continuar leyendo...');
	
	//Activo el lightbox
	$("a[rel='lightbox']").fancybox({
		'transitionIn':'fade', 
		'transitionOut' :'fade',
		'showNavArrows' : false,
		'hideOnContentClick' : true,
		'titleShow' : true,
		'titlePosition' : 'over'
									});
});
