// JavaScript Document

$(document).ready(function() {
	$('.gallery-tip').bt({
	  trigger: 'hover',
	  padding: 14,
	  width: 104,
	  spikeLength: 12,
	  spikeGirth: 12,
	  cornerRadius: 15,
	  fill: 'rgba(139, 196, 63, 1)',
	  strokeWidth: 2,
	  strokeStyle: '#000000',
	  cssStyles: {color: '#ffff', fontWeight: 'bold', fontFamily: 'Arial, Helvetica', fontSize: '12px', textAlign: 'center'},
	  positions: ['bottom']
	});
	
	$(function() {
		$('a.lightbox').lightBox();
	});
});


