// standard Javascript file to include all custom site functions
$(document).ready(function() {
	prepare_tabs();
	prepare_gallery();
});

function prepare_tabs() {
	var tabs = $('.tabs');
	
	if (tabs.length == 0) {
		return false;
	} else {
		tabs.tabs();
	} 
}

function prepare_gallery() {
	var links = $('#page-photo-gallery .entry-content a');
	if (links.length == 0) {
		return false;
	} else {
		links.lightBox({
		fixedNavigation: true,
		imageLoading: '/wp-content/themes/gregfischer/res/images/lightbox-ico-loading.gif',
		imageBtnClose: '/wp-content/themes/gregfischer/res/images/lightbox-btn-close.gif',
		imageBtnPrev: '/wp-content/themes/gregfischer/res/images/lightbox-btn-prev.gif',
		imageBtnNext: '/wp-content/themes/gregfischer/res/images/lightbox-btn-next.gif'
		});
	}
}

