﻿/// ********************************
/// COLORBOX INIT
/// ********************************
$(document).ready(InitColorBox);

function InitColorBox()
{
	InitColorBoxGroup(".thickbox");
	InitColorBoxGroup(".colorbox");
}

function InitColorBoxGroup(groupSelector, title, rel)
{
	$(groupSelector).colorbox
	({
		transition: "elastic",
		speed: 700,
		opacity: 0.85,
		current: "Obrázek {current} z {total}",
		next: "Předchozí",
		previous: "Další",
		close: "Zavřít",
		title: title != null ? !title : null,
		rel: rel
	});
}


