var pscTabIndex = -1;

jQuery(document).ready(function() {
	jQuery('.psc-tab-strip').each(function(i, el) {
		var tabs = jQuery(el).find('.psc-tab');
		if (tabs.length)
			jQuery(tabs[0]).css({ "border-left": "0px none red" });
	});
	jQuery('.galerie').tinyLightbox({ animation: 'parallel', speed: 400 });
	jQuery('.psc-tab').each(function(i, el) {
		var $el = jQuery(el);
		$el.html('<a href="#noop" onclick="pscTab(' + i + ');">' + $el.html() + '</a>');
	});
	pscTab(0);
});

function pscTab(index) {
	if (index != pscTabIndex) {
		pscTabIndex = index;
		jQuery('.psc-tab-content').each(function(i, el) {
			jQuery(el).css({ 'display': ((i == pscTabIndex) ? 'block' : 'none') });
		});
		jQuery('.psc-tab').each(function(i, el) {
			jQuery(el)[(i == pscTabIndex) ? 'addClass' : 'removeClass']('psc-tab-active');
		});
	}
}

