(function() {

$(function() {

    $(".thumbnails").scrollable({size: 4}).mousewheel();
    $('#pplace .main-info img:not(.png,.gallery-image),#pplace .c-menu img:not(.png,.gallery-image)').wrap(function() {
      return '<a class="fancybox" rel="main-info" href="' + $(this).attr("src") + '" title="' + $(this).attr("title") + '" />';
    });
    $('#pplace .cross-h img:not(.png)').css("cursor", "pointer").click(function() {_showBigImg(this);});
    $(".fancybox").fancybox({
        openEffect  : 'none',
        closeEffect : 'none'
    });
});
})();

var ImgViewerWindow = null;
function showBigImg(file) {
  var re = /^.*\//;
  file = file.replace(re,"");
  re = /\/s_/;
  file = file.replace(re,"/b_");
  if (ImgViewerWindow && !ImgViewerWindow.closed) ImgViewerWindow.close();
  ImgViewerWindow = window.open('/picture/?file='+file,
  "ImageViewer",
  "WIDTH=300,HEIGHT=300,LEFT=20,TOP=20,TOOLBAR=NO,LOCATION=NO,STATUS=NO,MENUBAR=NO,RESIZABLE=YES,SCROLLBAR=NO");
  if (ImgViewerWindow && !ImgViewerWindow.closed) { ImgViewerWindow.focus(); }
}
function showMap() {
//  alert('Тут будет карта');
  if (ImgViewerWindow && !ImgViewerWindow.closed) ImgViewerWindow.close();
  ImgViewerWindow = window.open('/bigmap/',
  "BigMap",
  "LEFT=0,TOP=0,HEIGHT=930,WIDTH=930,TOOLBAR=NO,LOCATION=NO,STATUS=NO,MENUBAR=NO,RESIZABLE=YES,SCROLLBAR=NO");

}

