/**
 * @author juanlopez4691@gmail.com
 */
$(document).ready(function(){
	var webUrl = 'http://' + window.location.hostname;
	
	//Activamos el plugin Lightbox
	$('a[@rel*=lightbox]').lightbox({
			fileLoadingImage: webUrl + '/lightbox/images/loading.gif',
			fileBottomNavCloseImage: webUrl + '/lightbox/images/closelabel.gif',
			strings : {
				help: ' \u2190 / P - imatge anterior\u00a0\u00a0\u00a0\u00a0\u2192 / N - següent imatge\u00a0\u00a0\u00a0\u00a0ESC / X - tancar la galeria',
				prevLinkTitle: 'imatge anterior',
				nextLinkTitle: 'següent imatge',
				prevLinkText:  '&laquo; anterior',
				nextLinkText:  'següent &raquo;',
				closeTitle: 'tancar la galeria',
				image: 'imatge ',
				of: ' de '
			}
		});
});

