//Colorbox settings
$(document).ready(function() {
	$("a[rel='colorboxed']").colorbox({
		slideshow: true,
		slideshowAuto: false,
		transition: "elastic",
		current: "- {current} of {total} -",
		maxHeight: "800px",
		speed: "350",
		scrolling: false
	});
	$("a[rel='colorboxed-video']").colorbox({
		iframe: true,
		innerWidth: 800,
		innerHeight: 600
	});
	$("a[rel='colorboxed-pop']").colorbox({
		slideshow: true,
		slideshowAuto: false,
		width: 300,
		height: 400,
		transition: "elastic",
		current: "- {current} of {total} -",
		maxHeight: "400px",
		speed: "350"
	});

});


