// JavaScript Document
$(document).ready(function() {
	$('a[@rel*=lightbox]').lightBox({
		overlayBgColor: '#45402C',
		overlayOpacity: 0.9,
		containerResizeSpeed: 350,
		txtImage: 'Foto',
		txtOf: 'od'
	});
	
	showDescription = function() {
			document.getElementById('gDesc').style.bottom = '0px';
	}
	hideDescription = function() {
		if (document.getElementById('gDesc').style.bottom === '0px'){
			document.getElementById('gDesc').style.bottom = '-42px';
		}
	}	
});
