function activateServices() {
	
	$("#services").find(".box").each(function() {
		var linkIt = $(this).find("a");
		$(this).css("cursor","pointer");
		$(this).bind("click", function() {
			location.href = linkIt.attr("href");
		});
	});
	
	// aktivace galerie
	$('a[rel*=lightbox]').lightBox({
		overlayBgColor: '#000',
		overlayOpacity: 0.6,
		imageLoading: 'http://www.dorifto.cz/img/jq-lightbox/loading.gif',
		imageBtnClose: 'http://www.dorifto.cz/img/jq-lightbox/close.gif',
		imageBtnPrev: 'http://www.dorifto.cz/img/jq-lightbox/prev.gif',
		imageBtnNext: 'http://www.dorifto.cz/img/jq-lightbox/next.gif',
		containerResizeSpeed: 350,
		txtImage: 'Obrázek',
		txtOf: 'z'
	   });
}


$(document).ready(
	function() {
		activateServices();
	}
);
