$(function() {
	if ($.fn["colorbox"]) {
		var wwidth  = window.innerWidth ? window.innerWidth: (document.all?document.body.offsetWidth:null);
		var wheight = window.innerHeight ? window.innerHeight: (document.all?document.body.offsetHeight:null);
	
		$("a[rel=colorbox]").colorbox({
			rel: "nofollow",
			returnFocus: false,
			maxHeight: wheight - 100,
			maxWidth: wwidth - 100,
			opacity: 0.7,
			current: "Работа {current} из {total}",
			previous: "назад",
			next: "вперёд",
			close: "закрыть",
			slideshowStart: "начать слайдшоу",
			slideshowStop: "остановить слайдшоу"
		});
	}
});
