$(document).ready(function(){
	$("#steps area").hover(
		function(){
			var index = $("#steps area").index(this);
			$(this).parent().parent().css("background-position","0 "+((index)*(-59))+"px");
		},
		function(){
			var index = $("#steps area").index(this);
			if ($("#steps").hasClass("steps_first")) {
				$(this).parent().parent().css("background-position", "0 0");
			};
			if ($("#steps").hasClass("steps_second")) {
				$(this).parent().parent().css("background-position", "0 -59px");
			};
			if ($("#steps").hasClass("steps_third")) {
				$(this).parent().parent().css("background-position", "0 -118px");
			};
		}
	);
	
	// LIGHTBOX
	$('a.lightbox').lightBox({
		txtImage : 'Obrázek',
		txtOf	: 'z',
		overlayBgColor : '#fff',
		imageLoading:			'/public/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
		imageBtnPrev:			'/public/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
		imageBtnNext:			'/public/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
		imageBtnClose:			'/public/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
		imageBlank:				'/public/images/lightbox-blank.gif'
	});
});
