(function($) {
	$.fn.applySlideshow = function() {
		var slideshow = $(this);
		if (slideshow.children().length > 1) { // only apply the slideshow if there is more than one slide
			slideshow.slides({
				controlOrientation: 'none',
				controlAlign: 'none',
				controlVAlign: 'none',
				controlContainer: '#breadcrumbs .content',
				controlTooltip: 'true'
			});
		}
	};
})(jQuery);

$(document).ready(function() {
	$('#content div.slideshow').applySlideshow();
	
	$('#breadcrumbs .control-panel > div').applyTooltip({className: 'tooltip-gray', adjustX: 20}); //slideshow dashes in header
	$('#content .slideshow .jquery-slide').applyTooltip({cornerTooltip: 'leftBottom'}); //slideshow image
	
	$('.content-page .tabs').tabs();
	
	$('.tabs .gallery a').colorbox({
		transition:'none',
		opacity: .3,
		rel:'gallery'
	});
});
