$(document).ready(function() {
	// Generic styles 
	$('a.ajax').colorbox({
		opacity: 0.85,
		maxHeight: '75%',
		title: function() {
			if ($(this).attr('title') != '') {
				return $(this).attr('title')
			} else if ($('img', this).attr('alt') != '') {
				return $('img', this).attr('alt')
			}
		},
		onComplete: function() {
			$('#cboxOverlay').height($('html').height());
		}
	});
	
	// Slideshows
	$('a.ajax.slideshow').colorbox({
		slideshow: true
	});
	
	// Thumbstrip
	/* $('a.ajax.thumbstrip').colorbox({
		onOpen:     function() {
			// create thumbstrip, see line 206 in jquery.colorbox.js "$related"
		},
		onComplete: function() {
			// set current class to according thumbstrip item
		},
		onClosed: function() {
			// destroy the thumbstrip since it is dependet on the rel attribute and needs to be recreated
		}
	});*/
	
	// iframe
	$('a.iframe').colorbox({
		iframe: true,
		innerWidth: '960px',
		innerHeight: '640px'
	});
});
