$(document).ready(function(){
				
        // Лайтбокс
        $.fn.colorbox.settings.current = "фото {current} из {total}";
        $.fn.colorbox.settings.previous = "назад";
        $.fn.colorbox.settings.next = "вперед";
        $.fn.colorbox.settings.close = "закрыть";
        $.fn.colorbox.settings.maxWidth = "90%";
        $.fn.colorbox.settings.maxHeight = "90%";

				$(".colorbox").colorbox({transition:"none"});


 // Внешние ссылки в новом окне
$("a[href^=http]").each(function(){
      if(this.href.indexOf(location.hostname) == -1) {
         $(this).attr({
            target: "_blank"
            // title: "Opens in a new tab or window"
         });
      }
    });



			});


