/***
  jQuery lightBox plugin
***/

$(document).ready(function() {
  // large image
  $("a[@rel*=jquery-lightbox]").lightBox({
    overlayOpacity: 0.6,
    imageBlank: "/_template/img/lightbox/blank.gif",
    imageLoading: "/_template/img/lightbox/loading.gif",
    imageBtnClose: "/_template/img/lightbox/close.png",
    imageBtnPrev: "/_template/img/lightbox/goleft.png",
    imageBtnNext: "/_template/img/lightbox/goright.png",
    containerResizeSpeed: 350,
    txtImage: "Изображение",
    txtOf: "из"
  });
});

function changeDisplay(el_id) {
  el=document.getElementById(el_id);
  (el.style.display.indexOf('none') != -1) ? el.style.display='' : el.style.display='none';
}
