
var img_name, img_Wd, img_Src, img_Link, is_other, is_pn, t_link_to_buffer, t_hs_block, t2_link_to_buffer, t2_hs_block;
var exp1,exp2,kkey,sshow,hsCount,hsCurrNum,hsCurrNum_old;
var old_thumbLeft, old_thumbTop, old_thumbWidth, old_thumbHeight;
var darkness_timeout=1000;
var jscript/*@cc_on=@_jscript_version@*/;
function getBodyScrollTop()
{
    return self.pageYOffset || (document.documentElement && document.documentElement.scrollTop) || (document.body && document.body.scrollTop);
}

function getBodyScrollLeft()
{
    return self.pageXOffset || (document.documentElement && document.documentElement.scrollLeft) || (document.body && document.body.scrollLeft);
}

function getClientWidth()
{
  return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientWidth:document.body.clientWidth;
}

function getClientHeight()
{
  return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientHeight:document.body.clientHeight;
}
var hs = {

// Apply your own settings here, or override them in the html file.  
graphicsDir : 'http://vklybe.tv/highslide/graphics/',
//restoreCursor : 'zoomout.cur', // necessary for preload
expandSteps : 20, // number of steps in zoom. Each step lasts for duration/step milliseconds.
expandDuration : 200, // milliseconds
restoreSteps : 7,
restoreDuration : 80,
marginLeft : 15,
marginRight : 15,
marginTop : 15,
marginBottom : 15,
noexpand : true,

zIndexCounter : 1001, // adjust to other absolutely positioned elements
is_prev_next : false,
restoreTitle : 'Следующее фото',
loadingText : 'Загрузка...',
loadingTitle : 'Нажмите для отмены',
loadingOpacity : 0.75,
focusTitle : 'Click to bring to front',
allowMultipleInstances: false,
numberOfImagesToPreload : 1,
captionSlideSpeed : 0, // set to 0 to disable slide in effect
padToMinWidth : false, // pad the popup width to make room for wide caption
outlineWhileAnimating : 2, // 0 = never, 1 = always, 2 = HTML only 
outlineStartOffset : 1, // ends at 10
fullExpandTitle : '',
fullExpandPosition : '',
fullExpandOpacity : 0,
showCredits : false, // you can set this to false if you want
creditsText : 'Powered by <i>Highslide JS</i>',
creditsHref : 'http://vikjavev.no/highslide/',
creditsTitle : 'Go to the Highslide JS homepage',
enableKeyListener : true,


// These settings can also be overridden inline for each image
captionId : null,
spaceForCaption :0, // leaves space below images with captions
slideshowGroup : null, // defines groups for next/previous links and keystrokes
minWidth: 800,
minHeight: 800,
allowSizeReduction: false, // allow the image to reduce to fit client size. If false, this overrides minWidth and minHeight
//outlineType : 'outer-glow', // set null to disable outlines
outlineType : null,
wrapperClassName : 'highslide-wrapper', // for enhanced css-control

// END OF YOUR SETTINGS


// declare internal properties
preloadTheseImages : [],
continuePreloading: true,
expanders : [],
overrides : [
    'allowSizeReduction',
    'outlineType',
    'outlineWhileAnimating',
    'spaceForCaption',
    'captionId',
    'captionText',
    'captionEval',
    
    'wrapperClassName',
    'minWidth',
    'minHeight',
    'slideshowGroup',
    'easing',
    'easingClose',
    'fadeInOut'
],
overlays : [],
idCounter : 0,
faders : [],

pendingOutlines : {},
clones : {},
opera : (window.opera && window.getSelection),
ie : (document.all && !window.opera),
//ie8 : (jscript==5.8),
safari : /Safari/.test(navigator.userAgent),
geckoMac : /Macintosh.+rv:1\.[0-8].+Gecko/.test(navigator.userAgent),

$ : function (id) {
    return document.getElementById(id);
},

push : function (arr, val) {
    arr[arr.length] = val;
},

createElement : function (tag, attribs, styles, parent, nopad) {
    var el = document.createElement(tag);
    if (attribs) hs.setAttribs(el, attribs);
    if (nopad) hs.setStyles(el, {padding: 0, border: 'none', margin: 0});
    if (styles) hs.setStyles(el, styles);
    if (parent) parent.appendChild(el);    
    return el;
},

setAttribs : function (el, attribs) {
    for (var x in attribs) el[x] = attribs[x];
},

setStyles : function (el, styles) {
    for (var x in styles) {
        try { 
            if (hs.ie && x == 'opacity') {
                if (styles[x] > 0.99) el.style.removeAttribute('filter');
                else el.style.filter = 'alpha(opacity='+ (styles[x] * 100) +')';
            }
            else el.style[x] = styles[x]; 
        }
        catch (e) {}
    }
},

ieVersion : function () {
    var arr = navigator.appVersion.split("MSIE");
    return arr[1] ? parseFloat(arr[1]) : null;
},

getPageSize : function () {
    var iebody = document.compatMode && document.compatMode != "BackCompat" 
        ? document.documentElement : document.body;
    
    var width = hs.ie ? iebody.clientWidth : 
            (document.documentElement.clientWidth || self.innerWidth),
        height = hs.ie ? iebody.clientHeight : self.innerHeight;
    
    return {
        width: width,
        height: height,        
        scrollLeft: hs.ie ? iebody.scrollLeft : pageXOffset,
        scrollTop: hs.ie ? iebody.scrollTop : pageYOffset
    }
},

position : function(el)    { 
    var p = { x: el.offsetLeft, y: el.offsetTop };
    while (el.offsetParent)    {
        el = el.offsetParent;
        p.x += el.offsetLeft;
        p.y += el.offsetTop;
        if (el != document.body && el != document.documentElement) {
            p.x -= el.scrollLeft;
            p.y -= el.scrollTop;
        }
    }
    return p;
},

expand : function(a, params, custom) {
    
    if(!hs.noexpand)
    {
        hs.expandDuration = 200;
        hs.restoreDuration = 80;
        hs.expandSteps = 20;
        hs.restoreSteps = 7;
        hs.noexpand = false;
    }    
    if (a.getParams) return params;
    
    try {
        
        new hs.Expander(a, params, custom);
        
        return false;        
    } catch (e) { return true; }
},

focusTopmost : function() {
    var topZ = 0, topmostKey = -1;
    for (var i = 0; i < hs.expanders.length; i++) {
        if (hs.expanders[i]) {
            if (hs.expanders[i].wrapper.style.zIndex && hs.expanders[i].wrapper.style.zIndex > topZ) {
                topZ = hs.expanders[i].wrapper.style.zIndex;
                
                topmostKey = i;
            }
        }
    }
    if (topmostKey == -1) hs.focusKey = -1;
    else hs.expanders[topmostKey].focus();
},

getAdjacentAnchor : function(key, op) {
    var aAr = document.getElementsByTagName('A'), hsAr = {}, activeI = -1, j = 0;
    
    for (var i = 0; i < aAr.length; i++) {
        if (hs.isHsAnchor(aAr[i]) && ((hs.expanders[key].slideshowGroup 
                == hs.getParam(aAr[i], 'slideshowGroup')))) {
            hsAr[j] = aAr[i];
            if (hs.expanders[key] && aAr[i] == hs.expanders[key].a) {
                activeI = j;
            }
            j++;
        }
    }
    hsCurrNum=activeI;
    //alert(j);
    hsCount=j-1;
    
    //alert(hsCurrNum);
    //alert(hsCurrNum);
    
    //alert(hsCurrNum);
     if(hsCurrNum==0)
     {
        document.getElementById('dark1').style.left='0px';
     }
     else
     {
         document.getElementById('dark1').style.left='100px';
     }
    // alert(img_Wd);
     if(img_Wd>700)
     {
         if(hsCurrNum==hsCount)
             {
            // alert('s');
                   if(!this.ie)
                    {
                    document.getElementById('dark1').style.left='750px';
                    
                       //setTimeout("document.getElementById('dark1').style.left='700px'",100);
                    }
                    else
                    {
                    document.getElementById('dark1').style.left='750px';
                      // setTimeout("document.getElementById('dark1').style.left='750px'",100); 
                    }
                 }
                 else
             {
                 }
    }    
    else
    {
           if(hsCurrNum==hsCount)
             {
                 //alert('achtung');
                   setTimeout("document.getElementById('dark1').style.left='450px'",100);
                 }
                 else
             {
                 }
    }
    return hsAr[activeI + op] || null;
},

getParam : function (a, param) {
    a.getParams = a.onclick;
    var p = a.getParams ? a.getParams() : null;
    a.getParams = null;
    
    return (p && typeof p[param] != 'undefined') ? p[param] : 
        (typeof hs[param] != 'undefined' ? hs[param] : null);
},

getSrc : function (a) {
    var src = hs.getParam(a, 'src');
    if (src) return src;
    return a.href;
},

getNode : function (id) {
    var node = hs.$(id), clone = hs.clones[id], a = {};
    if (!node && !clone) return null;
    if (!clone) {
        clone = node.cloneNode(true);
        clone.id = '';
        hs.clones[id] = clone;
        return node;
    } else {
        return clone.cloneNode(true);
    }
},

discardElement : function(d) {
    hs.garbageBin.appendChild(d);
    hs.garbageBin.innerHTML = '';
},

previousOrNext : function (el, op) {
    
    if(body_cat_id)
    {
    if(op==1)
    {
        
         if(rand_top_num==0) 
         {
           body_cat_id=ttop1_cat; 
            }
            if(rand_top_num==1) body_cat_id=top2_cat;
            if(rand_top_num==2) body_cat_id=top3_cat;
            if(rand_top_num==3) body_cat_id=top4_cat;
            if(rand_top_num==4) body_cat_id=top5_cat;
            if(rand_top_num==5) body_cat_id=top6_cat;
            if(rand_top_num==6) body_cat_id=top7_cat;
            if(rand_top_num==7) body_cat_id=top8_cat;
            if(rand_top_num==8) body_cat_id=top9_cat;
            if(rand_top_num==9) body_cat_id=top10_cat;
         rand_top_num++;
    }
    if(op==-1)
    {
         if(rand_top_num==1) body_cat_id=rand_photo_cat; 
         if(rand_top_num==2) body_cat_id=ttop1_cat;
         if(rand_top_num==3) body_cat_id=top2_cat;
         if(rand_top_num==4) body_cat_id=top3_cat;
         if(rand_top_num==5) body_cat_id=top4_cat;
         if(rand_top_num==6) body_cat_id=top5_cat;
         if(rand_top_num==7) body_cat_id=top6_cat;
         if(rand_top_num==8) body_cat_id=top7_cat;
         if(rand_top_num==9) body_cat_id=top8_cat;
         if(rand_top_num==10) body_cat_id=top9_cat;
         rand_top_num--;
    }
    }
    //alert(body_cat_id);
    var exp = exp2 = hs.last = hs.getExpander(el);
    //var exp = hs.getExpander(el);
    //hs.loading.style.top='300px';
    //hs.loading.style.left='300px';
    //hs.loading.style.zIndex='10000';
    //exp.displayLoading2();
    clearTimeout(t_link_to_buffer);
    t_link_to_buffer=null;
    
    clearTimeout(t_hs_block);
    t_hs_block=null;
    hs.expandDuration = 1;
    hs.restoreDuration = 0;
    hs.expandSteps = 1;
    hs.restoreSteps = 0;
    hs.noexpand = true;
    
    try {
        //var adj = hs.upcoming =  hs.getAdjacentAnchor(exp.key, op);
        hs.is_prev_next=true;    
        is_pn=true;
        var adj = hs.upcoming =  hs.getAdjacentAnchor(exp.key, op);
        //var adj = hs.getAdjacentAnchor(exp.key, op);
        //adj.onclick();
        exp1=adj;
        exp1.onclick();
        //setTimeout('exp1.onclick()',300); 
        //opacity('highslide-image-id', 100, 0, 200);
        
        
        
            
    } catch (e)
    {hs.is_prev_next=false;
        is_pn=false;
    }
    try { 

    setTimeout('exp2.close()',1);
    //exp2.close();  
    //alert('last!');
    //exp2.close();
    //exp.close();
    } catch (e) {
    }    //88888888888888888888888888888888______8888888888888888888888888
    return false;
},

get_image_name : function (el)
{

},

previous : function (el) {
    return hs.previousOrNext(el, -1);
},

next : function (el) {
 
   
  
    return hs.previousOrNext(el, 1);    
},

keyHandler : function(e) {
    if (!e) e = window.event;
    if (!e.target) e.target = e.srcElement; // ie
    if (e.target.form) return true; // form element has focus
    
    var op = null;
    switch (e.keyCode) {
        case 32: // Space
        case 34: // Page Down
        case 39: // Arrow right
        case 40: // Arrow down
            op = 1;
            break;
        case 8:  // Backspace
        case 33: // Page Up
        case 37: // Arrow left
        case 38: // Arrow up
            op = -1;
            break;
        case 27: // Escape
        case 13: // Enter
            op = 0;
    }
    if (op !== null) {
        hs.removeEventListener(document, 'keydown', hs.keyHandler);
        if (!hs.enableKeyListener) return true;
        
        if (e.preventDefault) e.preventDefault();
        else e.returnValue = false;
        if (op == 0) {
            try { hs.getExpander().close(); } catch (e) {}
            return false;
        } else {
            return hs.previousOrNext(hs.focusKey, op);
        }
    }
    return true;
},


registerOverlay : function (overlay) {

   hs.push(hs.overlays, overlay);
},

getWrapperKey : function (element) {
    var el, re = /^highslide-wrapper-([0-9]+)$/;
    
    // 1. look in open expanders
    el = element;
    while (el.parentNode)    {
        if (el.id && re.test(el.id)) return el.id.replace(re, "$1");
        el = el.parentNode;
    }
    // 2. look in thumbnail
    el = element;
    while (el.parentNode)    {
        if (el.tagName && hs.isHsAnchor(el)) {
            for (var key = 0; key < hs.expanders.length; key++) {
                var exp = hs.expanders[key];
                if (exp && exp.a == el) 
                {
                 // alert(key);
                  return key;
                }
            }
        }
        el = el.parentNode;
    }
    
    return null;    
},

getExpander : function (el) {

    if (typeof el == 'undefined') return hs.expanders[hs.focusKey] || null;
    if (typeof el == 'number') return hs.expanders[el] || null;
    if (typeof el == 'string') el = hs.$(el);
    return hs.expanders[hs.getWrapperKey(el)] || null;
},

isHsAnchor : function (a) {
    return (a.onclick && a.onclick.toString().replace(/\s/g, ' ').match(/hs.(htmlE|e)xpand/));
},

reOrder : function () {
    for (var i = 0; i < hs.expanders.length; i++)
        if (hs.expanders[i] && hs.expanders[i].isExpanded) hs.focusTopmost();
},

mouseClickHandler : function(e) 
{    
    if (!e) e = window.event;
    if (e.button > 1) return true;
    if (!e.target) e.target = e.srcElement;
    
    var el = e.target;
    while (el.parentNode
        && !(/highslide-(image|move|html|resize)/.test(el.className)))
    {
        el = el.parentNode;
    }
    var exp = hs.getExpander(el);
    if (exp && (exp.isClosing || !exp.isExpanded)) return true;
        
    if (exp && e.type == 'mousedown') {
        if (e.target.form) return true;
        var match = el.className.match(/highslide-(image|move|resize)/);
        if (match) {
            hs.dragArgs = { exp: exp , type: match[1], left: exp.x.min, width: exp.x.span, top: exp.y.min, 
                height: exp.y.span, clickX: e.clientX, clickY: e.clientY };
            
            
            hs.addEventListener(document, 'mousemove', hs.dragHandler);
            if (e.preventDefault) e.preventDefault(); // FF
            
            if (/highslide-(image|html)-blur/.test(exp.content.className)) {
                exp.focus();
                hs.hasFocused = true;
            }
            return false;
        }
    } else if (e.type == 'mouseup') {
        
        hs.removeEventListener(document, 'mousemove', hs.dragHandler);
        
        if (hs.dragArgs) {
            if (hs.dragArgs.type == 'image')
                hs.dragArgs.exp.content.style.cursor = hs.styleRestoreCursor;
            var hasDragged = hs.dragArgs.hasDragged;
            
            if (!hasDragged &&!hs.hasFocused && !/(move|resize)/.test(hs.dragArgs.type)) {
                //alert('hi');
                //exp.close();
                if(!is_body)
                {
                   hs.next();
                }
                else
                {
                   exp.close();    
                }
            } 
            else if (hasDragged || (!hasDragged && hs.hasHtmlexpanders)) {
                hs.dragArgs.exp.redoShowHide();
            }
            
            hs.hasFocused = false;
            hs.dragArgs = null;
        
        } else if (/highslide-image-blur/.test(el.className)) {
            el.style.cursor = hs.styleRestoreCursor;        
        }
    }
    return false;
},

dragHandler : function(e)
{
    /*if (!hs.dragArgs) return true;
    if (!e) e = window.event;
    var a = hs.dragArgs, exp = a.exp;
    
    a.dX = e.clientX - a.clickX;
    a.dY = e.clientY - a.clickY;    
    
    var distance = Math.sqrt(Math.pow(a.dX, 2) + Math.pow(a.dY, 2));
    if (!a.hasDragged) a.hasDragged = (a.type != 'image' && distance > 0)
        || (distance > (hs.dragSensitivity || 5));
    
    if (a.hasDragged && e.clientX > 5 && e.clientY > 5) {
         exp.move(a);
    }*/
    return false;
},

wrapperMouseHandler : function (e) {
    try {
        if (!e) e = window.event;
        var over = /mouseover/i.test(e.type); 
        if (!e.target) e.target = e.srcElement; // ie
        if (hs.ie) e.relatedTarget = 
            over ? e.fromElement : e.toElement; // ie
        var exp = hs.getExpander(e.target);
        if (!exp || !e.relatedTarget || hs.getExpander(e.relatedTarget) == exp 
            || hs.dragArgs) return;
        for (var i = 0; i < exp.overlays.length; i++) {
            var o = hs.$('hsId'+ exp.overlays[i]);
            if (o && o.getAttribute('hideOnMouseOut')) {
                var from = over ? 0 : o.getAttribute('opacity'),
                    to = over ? o.getAttribute('opacity') : 0;            
                hs.fade(o, from, to);
            }
        }    
    } catch (e) {}
},

addEventListener : function (el, event, func) {
    try {
        el.addEventListener(event, func, false);
    } catch (e) {
        try {
            el.detachEvent('on'+ event, func);
            el.attachEvent('on'+ event, func);
        } catch (e) {
            el['on'+ event] = func;
        }
    } 
},

removeEventListener : function (el, event, func) {
    try {
        el.removeEventListener(event, func, false);
    } catch (e) {
        try {
            el.detachEvent('on'+ event, func);
        } catch (e) {
            el['on'+ event] = null;
        }
    }
},

preloadFullImage : function (i) {
    if (hs.continuePreloading && hs.preloadTheseImages[i] && hs.preloadTheseImages[i] != 'undefined') {
        var img = document.createElement('img');
        img.onload = function() { 
            img = null;
            hs.preloadFullImage(i + 1);
        };
        img.src = hs.preloadTheseImages[i];
    }
},
preloadImages : function (number) {
    if (number && typeof number != 'object') hs.numberOfImagesToPreload = number;
    var a, re, j = 0;
    
    var aTags = document.getElementsByTagName('A');
    for (var i = 0; i < aTags.length; i++) {
        a = aTags[i];
        re = hs.isHsAnchor(a);
        if (re && re[0] == 'hs.expand') {
            if (j < hs.numberOfImagesToPreload) {
                hs.preloadTheseImages[j] = hs.getSrc(a); 
                j++;
            }
        }
    }
    
    // preload outlines
    new hs.Outline(hs.outlineType, function () { hs.preloadFullImage(0)} );
    
    
    // preload cursor
    var cur = hs.createElement('img', { src: hs.graphicsDir + hs.restoreCursor });
},


genContainer : function () {
    if (!hs.container) {
        hs.container = hs.createElement('div', 
            null, 
            { className: 'highslide-container', position: 'absolute', left: 0, top: 0, width: '100%', zIndex: hs.zIndexCounter }, 
            document.body,
            true
        );

        hs.loading = hs.createElement('a',
            {
                className: 'highslide-loading',
                title: hs.loadingTitle,
                innerHTML: hs.loadingText,
                href: 'javascript:void(0)'
            },
            {
                position: 'absolute',
                opacity: hs.loadingOpacity,
                left: '-9999px',
                zIndex: 1
            }, hs.container
        );
        hs.garbageBin = hs.createElement('div', null, { display: 'none' }, hs.container);
        
        // http://www.robertpenner.com/easing/ 
        Math.linearTween = function (t, b, c, d) {
            return c*t/d + b;
        };
        Math.easeInQuad = function (t, b, c, d) {
            return c*(t/=d)*t + b;
        };
    }
},


genContainer2 : function (el) {
    if (!hs.container2) {
        hs.container2 = hs.createElement('div', 
            null, 
            { float: 'left' ,background: 'black',position: 'absolute', left: 0, top: 0, width: '200px', height: '200px', zIndex: '3'}, 
            //document.body,
            //hs.container,
            //hs.wrapper,
            el,
            true
        );
        
        /*hs.loading = hs.createElement('a',
            {
                className: 'highslide-loading',
                title: hs.loadingTitle,
                innerHTML: hs.loadingText,
                href: 'javascript:void(0)'
            },
            {
                position: 'absolute',
                opacity: hs.loadingOpacity,
                left: '-9999px',
                zIndex: 1
            }, hs.container
        );
        hs.garbageBin = hs.createElement('div', null, { display: 'none' }, hs.container);
        
        // http://www.robertpenner.com/easing/ 
        Math.linearTween = function (t, b, c, d) {
            return c*t/d + b;
        };
        Math.easeInQuad = function (t, b, c, d) {
            return c*(t/=d)*t + b;
        };*/
    }
},

fade : function (el, o, oFinal, dur, i, dir) {
    if (typeof i == 'undefined') { // new fader
        if (typeof dur != 'number') dur = 250;
        if (dur < 25) { // instant
            hs.setStyles( el, { opacity: oFinal    });
            return;
        }
        i = hs.faders.length;
        dir = oFinal > o ? 1 : -1;
        var step = (25 / (dur - dur % 25)) * Math.abs(o - oFinal);
    }
    o = parseFloat(o);
    var skip = (el.fade === 0 || el.fade === false || (el.fade == 2 && hs.ie));
    el.style.visibility = ((skip ? oFinal : o) <= 0) ? 'hidden' : 'visible';
    
    if (skip || o < 0 || (dir == 1 && o > oFinal)) return;
    
    if (el.fading && el.fading.i != i) { // reverse
        clearTimeout(hs.faders[el.fading.i]);
        o = el.fading.o;
    }
    el.fading = {i: i, o: o, step: (step || el.fading.step)};
    el.style.visibility = (o <= 0) ? 'hidden' : 'visible';
    hs.setStyles(el, { opacity: o });
    hs.faders[i] = setTimeout(function() {
        hs.fade(el, o + el.fading.step * dir, oFinal, null, i, dir);
    }, 25);
},

close : function(el) {
    hs.expandDuration = 200;
    hs.restoreDuration = 80;
    hs.expandSteps = 20;
    hs.restoreSteps = 7;
    //alert('22');
    var exp = hs.getExpander(el);
    
    if (exp) exp.close();
    return false;
    
}
}; // end hs object


//-----------------------------------------------------------------------------
hs.Outline =  function (outlineType, onLoad) {
    this.onLoad = onLoad;
    this.outlineType = outlineType;
    var v = hs.ieVersion(), tr;
    
    this.hasAlphaImageLoader = hs.ie && v >= 5.5 && v < 7;
    if (!outlineType) {
        if (onLoad) onLoad();
        return;
    }
    
    hs.genContainer();
    this.table = hs.createElement(
        'table', { cellSpacing: 0 },
        {
            visibility: 'hidden',
            position: 'absolute',
            borderCollapse: 'collapse',
            width: '900px'
        },
        hs.container,
        true
    );
    var tbody = hs.createElement('tbody', null, { height: '820px',width: '900px'}, this.table, 1);
    
    this.td = [];
    for (var i = 0; i <= 4; i++) {
        if (i % 3 == 0) tr = hs.createElement('tr', null, { height: 'auto' }, tbody, true);
        this.td[i] = hs.createElement('td', null, null, tr, true);
        var style = i != 4 ? { lineHeight: 0, fontSize: 0} : { position : 'relative' };
        hs.setStyles(this.td[i], style);
    }
    this.td[4].className = outlineType;
    
    this.preloadGraphic(); 
};

hs.Outline.prototype = {
preloadGraphic : function () {    
    var src = hs.graphicsDir + (hs.outlinesDir || "outlines/")+ this.outlineType +".png";
                
    var appendTo = hs.safari ? hs.container : null;
    this.graphic = hs.createElement('img', null, { position: 'absolute', left: '-9999px', 
        top: '-9999px' }, appendTo, true); // for onload trigger
    
    var pThis = this;
    this.graphic.onload = function() { pThis.onGraphicLoad(); };
    
    this.graphic.src = src;
},

onGraphicLoad : function () {
    var o = this.offset = this.graphic.width / 4,
        pos = [[0,0],[0,-4],[-2,0],[0,-8],0,[-2,-8],[0,-2],[0,-6],[-2,-2]],
        dim = { height: (2*o) +'px', width: (2*o) +'px' };
        
    for (var i = 0; i <= 8; i++) {
        if (pos[i]) {
            if (this.hasAlphaImageLoader) {
                var w = (i == 1 || i == 7) ? '100%' : this.graphic.width +'px';
                var div = hs.createElement('div', null, { width: '100%', height: '100%', position: 'relative', overflow: 'hidden'}, this.td[i], true);
                hs.createElement ('div', null, { 
                        filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale, src='"+ this.graphic.src + "')", 
                        position: 'absolute',
                        width: w, 
                        height: this.graphic.height +'px',
                        left: (pos[i][0]*o)+'px',
                        top: (pos[i][1]*o)+'px'
                    }, 
                div,
                true);
            } else {
                hs.setStyles(this.td[i], { background: 'url('+ this.graphic.src +') '+ (pos[i][0]*o)+'px '+(pos[i][1]*o)+'px'});
            }
            
            if (window.opera && (i == 3 || i ==5)) 
                hs.createElement('div', null, dim, this.td[i], true);
            
            hs.setStyles (this.td[i], dim);
        }
    }
    this.graphic = null;
    if (hs.pendingOutlines[this.outlineType]) hs.pendingOutlines[this.outlineType].destroy();
    hs.pendingOutlines[this.outlineType] = this;
    if (this.onLoad) this.onLoad();
},
    
setPosition : function (exp, x, y, w, h, vis) {
    if (vis) this.table.style.visibility = (h >= 4 * this.offset) 
        ? 'visible' : 'hidden';
    this.table.style.left = (x - this.offset) +'px';
    this.table.style.top = (y - this.offset) +'px';
    this.table.style.width = (w + 2 * (exp.offsetBorderW + this.offset)) +'px';
    w += 2 * (exp.offsetBorderW - this.offset);
    h += + 2 * (exp.offsetBorderH - this.offset);
    this.td[4].style.width = w >= 0 ? w +'px' : 0;
    this.td[4].style.height = h >= 0 ? h +'px' : 0;
    if (this.hasAlphaImageLoader) this.td[3].style.height 
        = this.td[5].style.height = this.td[4].style.height;
},
    
destroy : function(hide) {
    if (hide) this.table.style.visibility = 'hidden';
    else hs.discardElement(this.table);
}
};

//-----------------------------------------------------------------------------
// The expander object
hs.Expander = function(a, params, custom, contentType) {

    this.a = a;
    is_other=a.id;
    this.custom = custom;
    this.contentType = contentType || 'image';
    this.isImage = !this.isHtml;
    
    hs.continuePreloading = false;
    //alert('2');
    
    hs.genContainer();
   
    var key = this.key = hs.expanders.length;
    //alert(key);
    // override inline parameters
    for (var i = 0; i < hs.overrides.length; i++) {
        var name = hs.overrides[i];
        this[name] = params && typeof params[name] != 'undefined' ?
            params[name] : hs[name];
    }
    
    this.src = params && params.src ? params.src : a.href;
    
    // get thumb
    var el = this.thumb = ((params && params.thumbnailId) ? hs.$(params.thumbnailId) : null) 
        || a.getElementsByTagName('img')[0] || a;
    this.thumbsUserSetId = el.id || a.id;
    
    // check if already open
    
    
    for (var i = 0; i < hs.expanders.length; i++) {
        if (hs.expanders[i] && hs.expanders[i].a == a) {
            hs.expanders[i].focus();
            return false;
        }        
    }
    
        
    // cancel other
    for (var i = 0; i < hs.expanders.length; i++) {
        if (hs.expanders[i] && hs.expanders[i].thumb != el && !hs.expanders[i].onLoadStarted) {
            hs.expanders[i].cancelLoading();
        }
    }
    
    hs.expanders[this.key] = this;
    kkey=key;
    //setTimeout('hs.expanders[kkey-1].close()',2000);
    //setTimeout('alert(kkey);',1000);
    if (!hs.allowMultipleInstances) {
        if (hs.expanders[key-1]) 
        {
        setTimeout('hs.expanders[kkey-1].close()',500);
        //alert('last!');
        }
        if (typeof hs.focusKey != 'undefined' && hs.expanders[hs.focusKey])
        {
        //alert('last!');
        //hs.expanders[hs.focusKey].close();
            //setTimeout('hs.expanders[kkey].close()',2000);
            //opacity('highslide-image-id', 100, 0, 400);
            //PLATT
            }
    }
    
    var pos = hs.position(el);
    
    // thumbnail metrics        
    this.thumbWidth = el.width ? el.width : el.offsetWidth;        
    this.thumbHeight = el.height ? el.height : el.offsetHeight;
    this.thumbLeft = pos.x;
    old_thumbWidth=this.thumbWidth;
    old_thumbLeft=this.thumbLeft;
    //alert(old_thumbLeft);
    old_thumbHeight=this.thumbHeight;
    this.thumbLeft = 444;
    
    
    //this.thumbTop = 700;
    this.thumbTop = pos.y;
    old_thumbTop = this.thumbTop;
    this.thumbOffsetBorderW = (this.thumb.offsetWidth - this.thumbWidth) / 2;
    this.thumbOffsetBorderH = (this.thumb.offsetHeight - this.thumbHeight) / 2;
    
     
    
    // instanciate the wrapper
    this.wrapper = hs.createElement(
        'div',
        {
            id: 'highslide-wrapper-'+ this.key,
            //width: '800px',
            className: this.wrapperClassName
        },
        {
            visibility: 'hidden',
            position: 'absolute',
            zIndex: hs.zIndexCounter++
        }, null, true );
    //this.wrapper.style.width="800px";
    //this.wrapper.innerHTML="<div  class=\'nav_cat2\' id=\'hs_block\'></div>";
    //
//    this.wrapper.innerHTML=this.wrapper.innerHTML+"<div id=\"slideshow_link_div\"><a href=\"#\" id=\"slideshow_link\" onclick=\"begin_slide(this);return false;\">Начать слайд-шоу</a></div>";
//    this.wrapper.innerHTML=this.wrapper.innerHTML+"<div id='link_to_buffer'></div>"
    this.wrapper.innerHTML='<div id="dark1"></div>';
    //document.getElementById('dark1').style.left='-9999px';
    this.wrapper.onmouseover = this.wrapper.onmouseout = hs.wrapperMouseHandler;
    if (this.contentType == 'image' && this.outlineWhileAnimating == 2)
        this.outlineWhileAnimating = 0;
    // get the outline
    if (hs.pendingOutlines[this.outlineType]) {
        this.connectOutline();
        this[this.contentType +'Create']();
    } else if (!this.outlineType) {
        this[this.contentType +'Create']();
    } else {
        this.displayLoading();
        var exp = this;
        new hs.Outline(this.outlineType, 
            function () { 
                exp.connectOutline();
                exp[exp.contentType +'Create']();
            } 
        );
        
    }
    
    //process(); //WARNING!!!! -----------disabled17
    
    return true;
};

hs.Expander.prototype = {

connectOutline : function(x, y) {    
    var w = hs.pendingOutlines[this.outlineType];
    this.objOutline = w;
    w.table.style.zIndex = '1';//this.wrapper.style.zIndex;
    w.table.style.width='500px';
    hs.pendingOutlines[this.outlineType] = null;
},

displayLoading : function() {
    if (this.onLoadStarted || this.loading) return;
        
    //this.originalCursor = this.a.style.cursor;
    //this.a.style.cursor = 'wait';
    
    this.loading = hs.loading;
    var exp = this;
    this.loading.onclick = function() {
        exp.cancelLoading();
    };
    this.loading.style.top = (this.thumbTop 
        + (this.thumbHeight - this.loading.offsetHeight) / 2) +'px';
    var exp = this, left = (this.thumbLeft + this.thumbOffsetBorderW 
        + (this.thumbWidth - this.loading.offsetWidth) / 2) +'px';
    setTimeout(function () { if (exp.loading) exp.loading.style.left = left }, 100); 
},

displayLoading2 : function() {
    if (this.onLoadStarted || this.loading) return;
        
    //this.originalCursor = this.a.style.cursor;
    //this.a.style.cursor = 'wait';
    
    this.loading = hs.loading;
    var exp = this;
    this.loading.onclick = function() {
        exp.cancelLoading();
    };
    this.loading.style.zIndex='10000';
    this.loading.style.top = '300px';//this.container2.style.top+'px';//(this.thumbTop 
        //+ (this.thumbHeight - this.loading.offsetHeight) / 2) +'px';
    var exp = this, left = (this.thumbLeft + this.thumbOffsetBorderW 
        + (this.thumbWidth - this.loading.offsetWidth) / 2) +'px';
    //setTimeout(function () { if (exp.loading) exp.loading.style.left = left }, 100); 
    this.loading.style.left='300px';
},

imageCreate : function() {
  //  alert('1');
   
    var exp = this;
    
    var img = document.createElement('img');
    this.content = img;
    img.onload = function () {
        if (hs.expanders[exp.key]) exp.contentLoaded(); 
    };
    if (hs.blockRightClick) img.oncontextmenu = function() { return false; };
    img.className = 'highslide-image';
    img.id = 'highslide-image-id'; 
    img.style.visibility = 'hidden'; // prevent flickering in IE
    img.style.display = 'block';
    img.style.position = 'absolute';
    img.style.maxWidth = 'none';
    img.style.zIndex = 10;
    img.onclick=function(){
    //alert('achtung!');
    //hs.is_prev_next=false
    //is_pn=false;
    };
    img.title = hs.restoreTitle;
    if (hs.safari) hs.container.appendChild(img);
    if (hs.ie && hs.flushImgSize) img.src = null;
    img.src = this.src;
    img_Src=img.src;
    //document.getElementById('buffer').innerHTML = this.src;
    img_name = this.src;
    
    //img.style.height='80px';
    //alert(img.src);
    
    hs.container.style.position='absolute';
    //hs.container.style.left='-200px';
    //hs.container.style.margin='0 auto';
    this.displayLoading();
    
},

contentLoaded : function() {
    try {
      
    
    
        if (!this.content) return;
        this.content.onload = null;
        if (this.onLoadStarted) return;
        else this.onLoadStarted = true;
        this.thumbWidth=210;
        //this.thumbHeight=140;
        if (this.loading) {
            hs.setStyles(this.loading, { left: '-9999px', top: '-9999px' });
            this.loading = null;
            //this.a.style.cursor = this.originalCursor || '';
        }
        this.marginBottom = hs.marginBottom;    
            this.newWidth = this.content.width;
            
            this.newHeight = this.content.height;
            this.fullExpandWidth = this.newWidth;
            this.fullExpandHeight = this.newHeight;
            
             this.content.style.width = this.thumbWidth +'px';
            //alert(this.content.style.width);
            //this.content.style.width = '500px';
            this.content.style.textAlign='center';
            this.content.style.height = this.thumbHeight +'px';
            this.getCaption();
        
        
        this.wrapper.appendChild(this.content);
        this.content.style.position = 'relative'; // Saf
        //this.content.style.width='800px';
        if (this.caption) this.wrapper.appendChild(this.caption);
        
        
        //this.wrapper.style.left = this.thumbLeft +'px';
        //this.wrapper.style.top = this.thumbTop +'px';
        
        //this.wrapper.style.left = '100px';
        //this.wrapper.style.top = '100px';
        
        //this.wrapper.style.border='1px solid #2c1e40';
        //this.wrapper.style.width='900px';
        //alert('2');
        //this.content.style.width='800px';
        img_Wd=this.newWidth;
        //alert(img_Wd); //674 450
    //    if(this.newWidth>700)
    //    {
            
                
    //        this.wrapper.style.marginTop='150px';
    //        if(hs.opera)this.wrapper.style.marginTop='150px';//11111111111111111111111111111111111111111
            
    //    }
    //    else
    //    {
            this.wrapper.style.marginTop='73px';
            if(hs.opera)
              {
              //alert('opera!');]
              
        this.wrapper.style.marginLeft='0px'
        
                    this.wrapper.style.marginTop='70px';//11111111111111111111111111111111111111111
              }     
              
              if((!is_body)&&(!hs.ie))this.wrapper.style.marginTop='35px';
    //    }
        this.wrapper.style.paddingLeft='80px';//'80px';
        if(hs.opera)
        {this.wrapper.style.paddingLeft='75px';
        }
        if(document.body.clientWidth<1025)
        {
        this.wrapper.style.marginLeft='25px'
        }
        this.wrapper.style.paddingTop='0px';
        
        //this.wrapper.style.paddingLeft='100px';//'80px';
        //this.wrapper.style.paddingRight='100px';
        //this.wrapper.style.left = '100px';
        //this.wrapper.style.top = '100px';
        //this.wrapper.style.position='absolute';
        //this.wrapper.style.top = '100px';
        //alert(getClientWidth());
        
        hs.container.appendChild(this.wrapper);
        
        // correct for borders
        this.offsetBorderW = (this.content.offsetWidth - this.thumbWidth) / 2;
        this.offsetBorderH = (this.content.offsetHeight - this.thumbHeight) / 2;
        var modMarginRight = hs.marginRight + 2 * this.offsetBorderW;
        this.marginBottom =500;//+= 2 * this.offsetBorderH;
        
        var ratio = this.newWidth / this.newHeight;
        var minWidth = this.allowSizeReduction 
            ? this.minWidth : this.newWidth;
        var minHeight = this.allowSizeReduction 
            ? this.minHeight : this.newHeight;
        //minWidth=1000;
        var justify = { x: 'auto', y: 'auto' };
        
        var page = hs.getPageSize();
        // justify
        this.x = { 
            min: parseInt(this.thumbLeft) - this.offsetBorderW + this.thumbOffsetBorderW,
            span: this.newWidth,
            minSpan: (this.newWidth < minWidth && !hs.padToMinWidth)//800, 
                ? this.newWidth : minWidth,
            marginMin: hs.marginLeft, 
            marginMax: modMarginRight,
            scroll: page.scrollLeft,
            clientSpan: page.width,
            thumbSpan: this.thumbWidth
        };
        
    //    alert(document.body.clientWidth);
        
        
        var oldRight = this.x.min + parseInt(this.thumbWidth);
        this.x = this.justify(this.x);
        this.y = { 
            min: parseInt(this.thumbTop) - this.offsetBorderH + this.thumbOffsetBorderH,
            span: this.newHeight,
            minSpan: this.newHeight < minHeight ? this.newHeight : minHeight, //590,
            marginMin: hs.marginTop, 
            marginMax: this.marginBottom, 
            scroll: page.scrollTop,
            clientSpan: page.height,
            thumbSpan: this.thumbHeight
        };
        //document.getElementById('dark1').style.height=this.y.clientSpan+'px';
        var oldBottom = this.y.min + parseInt(this.thumbHeight);
        this.y = this.justify(this.y);
        
            this.correctRatio(ratio);
         if(document.body.clientWidth<1029)
        {
        
        //////////////////////////////////
          this.x.min=this.x.min-130;
         //alert(this.y.min);
        // if(this.y.min>450)this.y.min=450;
         // this.y.min=this.y.min-20;
         //////////////////////////////////
         
        }

        
        //this.content.style.left='50px';
        //this.wrapper.style.width='1000px';
        //this.wrapper.style.left = '100px';
        var x = this.x;
        var y = this.y;
        //this.wrapper.style.left='0px';
        this.show();
        //process();//THIS_IS_PROCESS  -----------disabled17
        //alert(document.getElementById('highslide-image-id').innerHTML);
       
    } catch (e) {
        window.location.href = this.src;
    }
    
    
    
},

justify : function (p) {
    
    var tgt, dim = p == this.x ? 'x' : 'y';
    
    
        var hasMovedMin = false;
        
        var allowReduce = true;
        
        // calculate p.min
        p.min = Math.round(p.min - ((p.span - p.thumbSpan) / 2)); // auto
        
        if (p.min < p.scroll + p.marginMin) {
            p.min = p.scroll + p.marginMin;
            hasMovedMin = true;        
        }
    
        
        if (p.span < p.minSpan) {
            p.span = p.minSpan;
            allowReduce = false;            
        }
        
        // calculate right/newWidth
        if (p.min + p.span > p.scroll + p.clientSpan - p.marginMax) {
            if (hasMovedMin && allowReduce) {
                
                p.span = p.clientSpan - p.marginMin - p.marginMax; // can't expand more
                
            } else if (p.span < p.clientSpan - p.marginMin - p.marginMax) { // move newTop up
                p.min = p.scroll + p.clientSpan - p.span - p.marginMin - p.marginMax;
            } else { // image larger than client
                p.min = p.scroll + p.marginMin;
                
                if (allowReduce) p.span = p.clientSpan - p.marginMin - p.marginMax;
                
            }
            
        }
        
        if (p.span < p.minSpan) {
            p.span = p.minSpan;
            allowReduce = false;
        }
        
    
        
    if (p.min < p.marginMin) {
        tmpMin = p.min;
        p.min = p.marginMin; 
        
        if (allowReduce) p.span = p.span - (p.min - tmpMin);
        
    }
    return p;
},

correctRatio : function(ratio) {
    var x = this.x;
    var y = this.y;
    var changed = false;
    if (x.span / y.span > ratio) { // width greater
        var tmpWidth = x.span;
        x.span = y.span * ratio;
        if (x.span < x.minSpan) { // below minWidth
            if (hs.padToMinWidth) x.imgSpan = x.span;            
            x.span = x.minSpan;
            if (!x.imgSpan)
            y.span = x.span / ratio;
        }
        changed = true;
    
    } else if (x.span / y.span < ratio) { // height greater
        var tmpHeight = y.span;
        y.span = x.span / ratio;
        changed = true;
    }
    
    if (changed) {
        x.min = parseInt(this.thumbLeft) - this.offsetBorderW + this.thumbOffsetBorderW;
        x.minSpan = x.span;
        this.x = this.justify(x);
        
        y.min = parseInt(this.thumbTop) - this.offsetBorderH + this.thumbOffsetBorderH;
        y.minSpan = y.span;
        this.y = this.justify(y);
    }
},

show : function () {
    document.getElementById('dark1').style.left='-9999px';
   // alert(sshow);
    
    //if(hsCurrNum==0)//document.getElementById('prev_id').style.display='none';
    //    document.getElementById('prev_id').style.width='200px';
    
    
    //if(!hs.ie)opacity('highslide-image-id', 30, 100, 1500);
    
    
    //currentOpac('highslide-image-id', 10, 1);
    //setTimeout("currentOpac('highslide-image-id', 100, 1000);",5);
    // Selectbox bug
    var imgPos = {x: this.x.min - 20, y: this.y.min - 20, w: this.x.span + 40, 
        h: this.y.span + 40
         + this.spaceForCaption};
    //var imgPos = {x: 100, y: 100, w: this.x.span + 40, 
    //    h: this.y.span + 40
    //     + this.spaceForCaption};
    hs.hideSelects = (hs.ie && hs.ieVersion() < 7);
    if (hs.hideSelects) this.showHideElements('SELECT', 'hidden', imgPos);
    // Iframes bug
    hs.hideIframes = ((window.opera && navigator.appVersion < 9) || navigator.vendor == 'KDE' 
        || (hs.ie && hs.ieVersion() < 5.5));
    if (hs.hideIframes) this.showHideElements('IFRAME', 'hidden', imgPos);
    // Scrollbars bug
    if (hs.geckoMac) this.showHideElements('*', 'hidden', imgPos); 
    
    
    if (this.x.imgSpan) this.content.style.margin = '0 auto';
    this.overlays = [];
    
    // Apply size change        
    this.changeSize(
        1,
        { 
            x: this.thumbLeft + this.thumbOffsetBorderW - this.offsetBorderW,
            y: this.thumbTop + this.thumbOffsetBorderH - this.offsetBorderH,
            w: this.thumbWidth,
            h: this.thumbHeight,
            imgW: this.thumbWidth,
            o: hs.outlineStartOffset
        },
        {
            x: this.x.min,
            y: this.y.min,
            w: this.x.span,
            h: this.y.span,
            imgW: this.x.imgSpan,
            o: this.objOutline ? this.objOutline.offset : 0
        },
        hs.expandDuration,
        hs.expandSteps
    );
    
    if(hs.ie)
    {
     if(is_scroll_page)
     {    
         document.getElementById('darkness').style.height=document.body.scrollHeight+'px';//document.body.scrollHeight;//'200px';
         document.getElementById('darkness').style.width=document.body.clientWidth+'px';//document.body.scrollWidth;//'200px';
        }      
               function getDocumentHeight()  
            {  
             return (document.body.scrollHeight > document.body.offsetHeight)?document.body.scrollHeight:document.body.offsetHeight;  
         }
          // alert(document.body.scrollHeight); 
              //alert(document.body.offsetHeight);    
    }
    else
    {
       if(is_scroll_page)
       {
           document.getElementById('darkness').style.height='3000px';//document.body.scrollHeight;//'200px';
           document.getElementById('darkness').style.width=document.body.clientWidth+30+'px';//document.body.scrollWidth;//'200px';
           document.body.style.overflow='hidden';
       }
       //alert(document.body.clientHeight);
    }
    //alert(document.body.clientWidth);
    //
    // yScroll = (window.scrollY) ? window.scrollY : document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop;
   
        //alert('on');
        
    
    
    
    
    //setTimeout("opacity('highslide-image-id', 0, 100, 500)",200);
    if(!sshow)setTimeout('process();',500);//  -----------disabled17
    //alert(hs.sshow);
    //if (hs.sshow) hs.next(this);
    //hs.next(this); //======================================================================================
},

changeSize : function(up, from, to, dur, steps) {
    
    if (up && this.objOutline && !this.outlineWhileAnimating) 
        this.objOutline.setPosition(this, this.x.min, this.y.min, this.x.span, this.y.span);
    
    else if (!up && this.objOutline) {    
        if (this.outlineWhileAnimating) this.objOutline.setPosition(this, from.x, from.y, from.w, from.h);
        else this.objOutline.destroy();
        }    
            
    if (!up) { // remove children
        var n = this.wrapper.childNodes.length;
        for (var i = n - 1; i >= 0 ; i--) {
            var child = this.wrapper.childNodes[i];
            if (child != this.content) hs.discardElement(child);
        }
    }
        
    if (this.fadeInOut) {
        from.op = up ? 0 : 1;
        to.op = up;
    }
    var t,
    exp = this,
    easing = Math[this.easing] || Math.easeInQuad;
    if (!up) easing = Math[this.easingClose] || easing;
    
    for (var i = 1; i <= steps; i++) {
        t = Math.round(i * (dur / steps));
        
        (function(){
            var pI = i, size = {};
            
            for (var x in from) {
                size[x] = easing(t, from[x], to[x] - from[x], dur);
                if (/[xywh]/.test(x)) size[x] = Math.round(size[x]);
            }
                        
            setTimeout ( function() {
                if (up && pI == 1) {
                    exp.content.style.visibility = 'visible';
                    exp.a.className += ' highslide-active-anchor';
                }
                exp.setSize(size);
            }, t);                
        })();        
    }
    
    if (up) { 
            
        setTimeout(function() {
            if (exp.objOutline) exp.objOutline.table.style.visibility = "visible";
        }, t);
        setTimeout(function() {
            if (exp.caption) exp.writeCaption();
            exp.afterExpand();
        }, t + 50);
    }
    else setTimeout(function() { exp.afterClose(); }, t);
        
},

setSize : function (to) {
    try {
            this.wrapper.style.width = (to.w + 2*this.offsetBorderW) +'px';
            this.content.style.width =
                ((to.imgW && !isNaN(to.imgW)) ? to.imgW : to.w) +'px';
            if (hs.safari) this.content.style.maxWidth = this.content.style.width;
            this.content.style.height = to.h +'px';
        
        if (to.op) hs.setStyles(this.wrapper, { opacity: to.op });
                
        
        if (this.objOutline && this.outlineWhileAnimating) {
            var o = this.objOutline.offset - to.o;
            this.objOutline.setPosition(this, to.x + o, to.y + o, to.w - 2 * o, to.h - 2 * o, 1);
        }
                
        hs.setStyles ( this.wrapper,
            {
                'visibility': 'visible',
                'left': to.x +'px',
                'top': to.y +'px'
            }
        );
        
    } catch (e) { window.location.href = this.src;    }
},

afterExpand : function() {
    //alert('expanded');
    
    if(!hs.is_prev_next)
    {
       //alert(hs.is_prev_next);
     //  setTimeout("opacity('darkness', 0, 70, 10)",600);
      if(is_scroll_page)
      { 
        opacity('darkness', 0, 50, 1);
      }
    }
    
    this.isExpanded = true;    
    this.focus();
    //setTimeout('opacity("hs_block", 0, 100, 1400);',10);
    clearTimeout(t_hs_block);
    clearTimeout(t_link_to_buffer);
    //alert('s');
    if(!t_hs_block)
       {
       clearTimeout(t_hs_block);
       t_hs_block=setTimeout('opacity("hs_block", 0, 100, 1500);',200);
       }
     else
       {
       clearTimeout(t_hs_block);
       
       t_hs_block=setTimeout('opacity("hs_block", 0, 100, 1500);',200);
       }
    
    /*
    if(!t_link_to_buffer)
       {
       clearTimeout(t_link_to_buffer);
       t_link_to_buffer=setTimeout('opacity("link_to_buffer", 0, 100, 1300);',100);
       }
     else
       {
       clearTimeout(t_link_to_buffer);
       
       t_link_to_buffer=setTimeout('opacity("link_to_buffer", 0, 100, 1300);',100);
       }
    */
    //opacity('link_to_buffer', 0, 100, 400);
    this.thumbLeft = old_thumbLeft;
    hs.is_prev_next=false;
    //setTimeout('hs.is_prev_next=false',200);
    //setTimeout('hs.is_prev_next=false',500);
    hs.genContainer2(hs.container);
    //hs.container2.style.left='170px';//Changed 1107
    hs.container2.style.left='145px';
    //document.getElementById('hs_block').style.left='180px';
    
    //hs.container2.style.width='922px';//Changed 1107
    hs.container2.style.width='965px';
    hs.container2.style.height='830px';
    hs.container2.style.background='#180020';
    hs.container2.style.border='2px solid #7c5a88';
    //hs.container2.style.paddingTop='300px';
    
//    hs.container2.innerHTML='Загрузка...';
    hs.container2.innerHTML="<div  class=\'nav_cat2\' id=\'hs_block\'></div>";
  //  hs.container2.innerHTML='';
    
    
       hs.container2.innerHTML=hs.container2.innerHTML+"<div id=\"slideshow_link_div\"><a href=\"#\" id=\"slideshow_link\" onclick=\"begin_slide();return false;\"></a></div>"; 
    if(hs.ie)             //если IE
    {
    document.getElementById('slideshow_link_div').style.top='49px';
    document.getElementById('slideshow_link_div').style.left='15px';
    }
    if(sshow)
    {
        //document.getElementById("slideshow_link").outerHTML='<a href="#" id="slideshowend_link" onclick="slideshowend_link();return false;">Закончить слайд-шоу</a>';
    //    alert('s');
    /*    document.getElementById("slideshow_link").id = 'slideshowend_link';
        document.getElementById("slideshowend_link").innerHTML='Закончить слайд-шоу';
        document.getElementById("slideshowend_link").onclick=function()
        {
            slideshowend_link();return false;
        }
    //clearTimeout(t2);
        t=setTimeout('document.getElementById("next_id").onclick();',sshow_period);
        setTimeout(function()
        {
         alert(document.getElementById("next_id").id);
        }
        ,sshow_period);*/
    if(!is_body)
     {   
       document.getElementById('slideshow_link').innerHTML='Закончить слайд-шоу'; 
       setTimeout('begin_slide();',500);
     }

    }
    else
    {
    if(!is_body)
     {
       //document.getElementById('slideshow_link').innerHTML='';
     //  alert(document.getElementById('slideshow_link').innerHTML);
       document.getElementById('slideshow_link').innerHTML='Слайд-шоу';
     //  alert(document.getElementById('slideshow_link').innerHTML);
       //alert(document.getElementById('slideshow_link').innerHTML);
       //document.getElementById('slideshow_link_div').style.top='10px';
       //alert(document.getElementById('slideshow_link_div').style.top);
     }
    }
            
    //alert(hs.container2.innerHTML);
    //hs.container2.innerHTML=hs.container2.innerHTML+"<div id='canvas'></div>";
    //hs.container2.innerHTML=hs.container2.innerHTML+"<div id='link_to_buffer'><a href='#' onClick='window.clipboardData.setData(\"text\",document.getElementById(\"image_link\").innerHTML);'>Добавить ссылку на фотографию в буфер обмена</a></div>";
    if(!sshow)//)&&(document.getElementById(\"hidden_link\").innerHTML<>\"\")
    {
        hs.container2.innerHTML=hs.container2.innerHTML+"<div id='hidden_link' style='visibility:hidden;width:0px;height:0px'></div><div id='link_to_buffer' style='cursor:pointer' onclick='if(document.getElementById(\"link_to_buffer_s\").innerHTML==\"Ссылка на фото\")this.innerHTML=document.getElementById(\"hidden_link\").innerHTML;'><span id=\"link_to_buffer_s\">Ссылка на фото</span></div>";
    }
    else
    {
        hs.container2.innerHTML=hs.container2.innerHTML+"<div id='hidden_link' style='visibility:hidden;width:0px;height:0px'></div><div id='link_to_buffer' style='cursor:pointer;visibility:hidden;' onclick='if(document.getElementById(\"link_to_buffer_s\").innerHTML==\"Ссылка на фото\")this.innerHTML=document.getElementById(\"hidden_link\").innerHTML;'><span id=\"link_to_buffer_s\">Ссылка на фото</span></div>";
    }
    hs.container2.innerHTML=hs.container2.innerHTML+"<div id='close_icon' style='position:absolute;left:936px;top:5px;z-index:10000'><a href='#' onclick='hs.close();return false'><img style='border:none' alt='Закрыть' title='Закрыть' src='http://vklybe.tv/img/close.gif'/></a></div>"
    setTimeout(function() {
            
         
            
            //opacity('link_to_buffer', 0, 100, 400);
            //document.getElementById('link_to_buffer').style.visibility='hidden';
            //setTimeout("document.getElementById('link_to_buffer').style.visibility='visible';",100);                                                                //document.getElementById(\'selected_input\').onclick=function(){this.select()}
            
            //hs.container2.innerHTML=hs.container2.innerHTML+"<div id='hidden_link' style='visibility:hidden;width:0px;height:0px'></div><div id='link_to_buffer' style='cursor:pointer' onclick='if(this.innerHTML==\"Ссылка на фото\")this.innerHTML=document.getElementById(\"hidden_link\").innerHTML;'>Ссылка на фото</div>";
            hs.container2.innerHTML=hs.container2.innerHTML+"<div id='canvas'></div>";//
            document.getElementById('canvas').style.border='1px white solid';
            document.getElementById('canvas').style.position='absolute';
            //document.getElementById('canvas').style.backgroundColor='#2c1e40';
            
          //  alert(document.getElementById('canvas').style.innerHTML);
            if(img_Wd==800)
        {
            document.getElementById('canvas').style.width='800px';
            document.getElementById('canvas').style.height='533px';
        
            document.getElementById('canvas').style.left='82px';
            //alert(is_other);
            if(is_other=='other')document.getElementById('canvas').style.left='81px';
            if(is_body)document.getElementById('canvas').style.left='81px';
        //    if((is_body)&&(hs.ie))document.getElementById('canvas').style.left='82px';
        //    if((is_body)&&(!hs.ie))document.getElementById('canvas').style.left='82px';
            document.getElementById('canvas').style.top='76px';
            document.getElementById('canvas').innerHTML='<div id="loading_pic"><img src="http://vklybe.tv/img/ajax-loader_2.gif" /></div><img src="'+img_Src+'" />';
            document.getElementById('loading_pic').style.left='390px';
            document.getElementById('loading_pic').style.top='260px';  
        /*     if(document.body.clientWidth<1025)
            {
            if(cont2_top>400)
                 {document.getElementById('canvas').style.top='91px';
                 }
                
                //var CLeft=document.getElementById('canvas').style.left.substr(0,2);
                // CLeft=CLeft-25;
                // document.getElementById('canvas').style.left=CLeft+'px';
                }*/
        }
        else
        {
        //alert(is_body);
            document.getElementById('canvas').style.left='257px';
        //  document.getElementById('canvas').style.left='270px';
            //if(is_body)document.getElementById('canvas').style.left='257px';
           // alert(is_other);
          
          
            //if(is_other=='other')document.getElementById('canvas').style.left='259px';
            //alert(is_other);
            if(is_other=='other')document.getElementById('canvas').style.left='256px';
          
            if(is_body)document.getElementById('canvas').style.left='256px';
            document.getElementById('canvas').style.top='76px';
            //document.getElementById('canvas').style.top='0px';
            document.getElementById('canvas').style.width='450px';
            document.getElementById('canvas').style.height='674px';
            document.getElementById('canvas').innerHTML='<div id="loading_pic"><img src="img/ajax-loader_2.gif" /></div><img src="'+img_Src+'" />';
            
            document.getElementById('loading_pic').style.left='219px';
            document.getElementById('loading_pic').style.top='309px'; 
        
        
        /*     if(document.body.clientWidth<1025)
            {
          //      var CLeft=document.getElementById('canvas').style.left.substr(0,3);
           //      CLeft=CLeft-25;
            //     document.getElementById('canvas').style.top='90px';
                  if(cont2_top>400)
                 {document.getElementById('canvas').style.top='91px';
                 }
                }*/
            //674 450
        }    
        if((!is_body)&&(!hs.ie))document.getElementById('canvas').style.top='38px';
              
       
        
            //alert('')
    }, 150);
    
    
    
    //setTimeout('alert(document.getElementById("image_link").innerHTML)',500);
    //hs.container2.innerHTML=hs.container2.innerHTML+'<div id="dark1"></div>'
    hs.container2.id='container2';
    
    var cont2_top=10+getBodyScrollTop();
    hs.container2.style.top=cont2_top+'px';
    //var wr_pos = getElementPosition('sd');
    //getElementPosition('sd');
    //hs.container2.style.top=wr_pos.top;
                //если FF
    //alert(getBodyScrollTop());
    hs.container2.style.height='890px';
    if(hs.opera)
    {
    cont2_top=64+getBodyScrollTop();
    //hs.container2.style.top=cont2_top+'px';
     hs.container2.style.left='170px'; //если Opera
     hs.container2.style.left='140px';
    // hs.wrapper.style.top='-20px';
    hs.container2.style.height='890px';
    hs.container2.style.width='966px';
     //this.thumbLeft = 410;
    }
    
        
    if(hs.ie)             //если IE
    {
    document.getElementById('hs_block').style.position='absolute';
    document.getElementById('hs_block').style.left='20px';
    //alert('ssss');
    
    //setTimeout("document.getElementById('link_to_buffer').style.top='27px'",500); 

    if(is_body)document.getElementById('link_to_buffer').style.top='35px';

    this.content.style.left='-40px';
    
    //alert(document.getElementById('hs_block').style.left);
    //document.getElementById('hs_block').style.width='100px';
    
    
    //hs.container2.style.left='172px'; //Changed 1107
    hs.container2.style.height='880px';
    //hs.container2.style.width='915px';//Changed 1107
    hs.container2.style.left='145px';
    hs.container2.style.width='965px';
    }
    //alert(document.body.clientWidth);
    if(document.body.clientWidth<1025)
    {
          //alert(hs.container2.style.top);
          /*if(cont2_top>400)
          {
             hs.container2.style.top='430px';
            // document.getElementById('canvas').style.top='220px';
          }*/
          hs.container2.style.left='40px';
          hs.container2.style.height='845px';
          //alert(hs.container2.style.left);       
    }

    
    
    this.createOverlays();
    
    if (hs.showCredits) this.writeCredits();
    
    //this.x.min = 800;
    //if (this.isImage && this.fullExpandWidth > this.x.span) this.createFullExpand();
    if (!this.caption) this.prepareNextOutline();
    //-----------------------------------------------------------------------------------------------==========
    
    
    //if(sshow)t=setTimeout('hs.next(this)',1000);
    //this.thumbLeft = old_thumbLeft;
    
    //process();
    if(sshow)document.getElementById('vote_caption').innerHTML='';
    
    
    

},


prepareNextOutline : function() {
    var key = this.key;
    var outlineType = this.outlineType;
    new hs.Outline(outlineType, 
        function () { try { hs.expanders[key].preloadNext(); } catch (e) {} });
},


preloadNext : function() {
    var next = hs.getAdjacentAnchor(this.key, 1);    
    if (next.onclick.toString().match(/hs\.expand/)) 
        var img = hs.createElement('img', { src: hs.getSrc(next) });
},

cancelLoading : function() {    
    hs.expanders[this.key] = null;
    //this.a.style.cursor = this.originalCursor;
    if (this.loading) hs.loading.style.left = '-9999px';
},

writeCredits : function () {
    this.credits = hs.createElement('a',
        {
            href: hs.creditsHref,
            className: 'highslide-credits',
            innerHTML: hs.creditsText,
            title: hs.creditsTitle
        }
    );
    this.createOverlay({ overlayId: this.credits, position: 'top left' });
},

getCaption : function() {
    if (!this.captionId && this.thumbsUserSetId)  
        this.captionId = 'caption-for-'+ this.thumbsUserSetId;
    if (this.captionId) this.caption = hs.getNode(this.captionId);
    if (!this.caption && !this.captionText && this.captionEval) try {
        this.captionText = eval(this.captionEval);
    } catch (e) {}
    if (!this.caption && this.captionText) this.caption = hs.createElement('div', 
            { className: 'highslide-caption', innerHTML: this.captionText } );
    
    if (!this.caption) {
        var next = this.a.nextSibling;
        while (next && !hs.isHsAnchor(next)) {
            if (/highslide-caption/.test(next.className || null)) {
                this.caption = next.cloneNode(1);
                break;
            }
            next = next.nextSibling;
        }
    }
    if (this.caption) {
        this.marginBottom += this.spaceForCaption;        
    }
    
},

writeCaption : function() {
    try {
        hs.setStyles(this.wrapper, { width: this.wrapper.offsetWidth +'px', 
            height: this.wrapper.offsetHeight +'px' } );    
        hs.setStyles(this.caption, { visibility: 'hidden', marginTop: hs.safari ? 0 : '-'+ this.y.span +'px'});
        this.caption.className += ' highslide-display-block';
        
        var height, exp = this;
        if (hs.ie && (hs.ieVersion() < 6 || document.compatMode == 'BackCompat')) {
            height = this.caption.offsetHeight;
        } else {
            var temp = hs.createElement('div', {innerHTML: this.caption.innerHTML}, 
                null, null, true); // to get height
            this.caption.innerHTML = '';
            this.caption.appendChild(temp);    
            height = this.caption.childNodes[0].offsetHeight;
            this.caption.innerHTML = this.caption.childNodes[0].innerHTML;
        }
        hs.setStyles(this.caption, { overflow: 'hidden', height: 0, zIndex: 2, marginTop: 0 });
        this.wrapper.style.height = 'auto';
        
        hs.captionSlideSpeed=null;
        height=100;//============================================================================CAPTION
        if(hs.opera)height=90;
        
        if (hs.captionSlideSpeed) {
            var step = (Math.round(height/50) || 1) * hs.captionSlideSpeed;
        } else {
            this.placeCaption(height, 1);
            return;
        }
        for (var h = height % step, t = 0; h <= height; h += step, t += 10) {
            (function(){
                var pH = h, end = (h == height) ? 1 : 0;
                setTimeout( function() {
                    exp.placeCaption(pH, end);
                }, t);
            })();
        }
    } catch (e) {}    
    
    
    
    
    
},

placeCaption : function(height, end) {
    if (!this.caption) return;
    this.caption.style.height = height +'px';
    this.caption.style.visibility = 'visible';
    this.y.span = this.wrapper.offsetHeight - 2 * this.offsetBorderH;
    
    
    var o = this.objOutline;
    if (o) {
        var h = this.wrapper.offsetHeight - 2 * this.objOutline.offset;
        if (h >= 0)    o.td[4].style.height = h +'px';
        if (o.hasAlphaImageLoader) o.td[3].style.height = o.td[5].style.height = o.td[4].style.height;
    }
    if (end) this.prepareNextOutline();
    
},


showHideElements : function (tagName, visibility, imgPos) {
    var els = document.getElementsByTagName(tagName);
    var prop = tagName == '*' ? 'overflow' : 'visibility';
    for (var i = 0; i < els.length; i++) {
        if (prop == 'visibility' || (document.defaultView.getComputedStyle(
                els[i], "").getPropertyValue('overflow') == 'auto'
                || els[i].getAttribute('hidden-by') != null)) {
            var hiddenBy = els[i].getAttribute('hidden-by');
            if (visibility == 'visible' && hiddenBy) {
                hiddenBy = hiddenBy.replace('['+ this.key +']', '');
                els[i].setAttribute('hidden-by', hiddenBy);
                if (!hiddenBy) els[i].style[prop] = els[i].origProp;
            } else if (visibility == 'hidden') { // hide if behind
                var elPos = hs.position(els[i]);
                elPos.w = els[i].offsetWidth;
                elPos.h = els[i].offsetHeight;
            
                
                    var clearsX = (elPos.x + elPos.w < imgPos.x || elPos.x > imgPos.x + imgPos.w);
                    var clearsY = (elPos.y + elPos.h < imgPos.y || elPos.y > imgPos.y + imgPos.h);
                var wrapperKey = hs.getWrapperKey(els[i]);
                if (!clearsX && !clearsY && wrapperKey != this.key) { // element falls behind image
                    if (!hiddenBy) {
                        els[i].setAttribute('hidden-by', '['+ this.key +']');
                        els[i].origProp = els[i].style[prop];
                        els[i].style[prop] = 'hidden';
                    } else if (!hiddenBy.match('['+ this.key +']')) {
                        els[i].setAttribute('hidden-by', hiddenBy + '['+ this.key +']');
                    }
                } else if (hiddenBy == '['+ this.key +']' || hs.focusKey == wrapperKey) { // on move
                    els[i].setAttribute('hidden-by', '');
                    els[i].style[prop] = els[i].origProp || '';
                } else if (hiddenBy && hiddenBy.match('['+ this.key +']')) {
                    els[i].setAttribute('hidden-by', hiddenBy.replace('['+ this.key +']', ''));
                }
                        
            }
        }
    }
},

focus : function() {
    this.wrapper.style.zIndex = hs.zIndexCounter++;
    // blur others
    for (var i = 0; i < hs.expanders.length; i++) {
        if (hs.expanders[i] && i == hs.focusKey) {
            var blurExp = hs.expanders[i];
            blurExp.content.className += ' highslide-'+ blurExp.contentType +'-blur';
            
            if (blurExp.caption) {
                blurExp.caption.className += ' highslide-caption-blur';
            }
            
                blurExp.content.style.cursor = hs.ie ? 'hand' : 'pointer';
                blurExp.content.title = hs.focusTitle;
        }
    }
    
    // focus this
    if (this.objOutline) this.objOutline.table.style.zIndex 
        = this.wrapper.style.zIndex;
    
    this.content.className = 'highslide-'+ this.contentType;
    
    if (this.caption) {
        this.caption.className = this.caption.className.replace(' highslide-caption-blur', '');
    }
    
        this.content.title = hs.restoreTitle;
        
        hs.styleRestoreCursor = window.opera ? 'pointer' : 'url('+ hs.graphicsDir + hs.restoreCursor +'), pointer';
        if (hs.ie && hs.ieVersion() < 6) hs.styleRestoreCursor = 'hand';
        this.content.style.cursor = hs.styleRestoreCursor;
        
    hs.focusKey = this.key;    
    hs.addEventListener(document, 'keydown', hs.keyHandler);    
},

move : function (e) {
    this.x.min = e.left + e.dX;
    this.y.min = e.top + e.dY;
    
    if (e.type == 'image') this.content.style.cursor = 'move';
    hs.setStyles(this.wrapper, { left: this.x.min +'px', top: this.y.min +'px' });
    
    if (this.objOutline)
        this.objOutline.setPosition(this, this.x.min, this.y.min, this.x.span, this.y.span);
    
},

close : function() {
    
    if (this.isClosing || !this.isExpanded) return;
    this.isClosing = true;
     //alert('is_pn='+is_pn);
     if(!hs.is_prev_next)
    {
    //alert('nomPN');
       document.body.style.overflow='visible';
        if(is_scroll_page)
         {
             setTimeout("shiftOpacity('darkness', 10);",100);
        }
    }
    hs.removeEventListener(document, 'keydown', hs.keyHandler);
    if(!hs.is_prev_next) hs.container2.style.left='-9999px';
    //shiftOpacity('highslide-image-id', 1000);
    //setTimeout('soClose()',1);
    //soClose();
    if(!hs.is_prev_next)
    {
    try {
        
        this.content.style.cursor = 'default';
        this.thumbLeft=old_thumbLeft;
        //alert(old_thumbLeft);
        this.thumbTop=old_thumbTop;
        this.thumbWidth=old_thumbWidth;
        this.thumbHeight=old_thumbHeight;
        this.changeSize(
            0,
            {
                x: this.x.min,
                y: this.y.min,
                w: this.x.span,
                h: parseInt(this.content.style.height),
                imgW: this.x.imgSpan,
                o: this.objOutline ? this.objOutline.offset : 0
            },
            {
                x: this.thumbLeft - this.offsetBorderW + this.thumbOffsetBorderW,
                y: this.thumbTop - this.offsetBorderH + this.thumbOffsetBorderH,
                w: this.thumbWidth,
                h: this.thumbHeight,
                imgW: this.thumbWidth,
                o: hs.outlineStartOffset
            },
            hs.restoreDuration,
            hs.restoreSteps
        );
        
    } catch (e) { this.afterClose(); } 
    }
    else
    {
    try {
        /*
        this.content.style.cursor = 'default';
        this.thumbLeft=old_thumbLeft;
        //alert(old_thumbLeft);

        this.thumbTop=old_thumbTop;
        this.thumbWidth=old_thumbWidth;
        this.thumbHeight=old_thumbHeight;
        this.changeSize(
            0,
            {
                x: this.x.min,
                y: this.y.min,
                w: this.x.span,
                h: parseInt(this.content.style.height),
                imgW: this.x.imgSpan,
                o: this.objOutline ? this.objOutline.offset : 0
            },
            {
                x: this.thumbLeft - this.offsetBorderW + this.thumbOffsetBorderW,
                y: this.thumbTop - this.offsetBorderH + this.thumbOffsetBorderH,
                w: this.thumbWidth,
                h: this.thumbHeight,
                imgW: this.thumbWidth,
                o: hs.outlineStartOffset
            },
            hs.restoreDuration,
            hs.restoreSteps
        );
        */
//opacity('highslide-image-id', 100, 50, 400);

        soClose(this);
        function soClose()
        {
        this.content.style.cursor = 'default';
        this.thumbLeft=old_thumbLeft;
        //alert(old_thumbLeft);
        this.thumbTop=old_thumbTop;
        this.thumbWidth=old_thumbWidth;
        this.thumbHeight=old_thumbHeight;
        this.changeSize(
            0,
            {
                x: this.x.min,
                y: this.y.min,
                w: this.x.span,
                h: parseInt(this.content.style.height),
                imgW: this.x.imgSpan,
                o: this.objOutline ? this.objOutline.offset : 0
            },
            {
                x: this.thumbLeft - this.offsetBorderW + this.thumbOffsetBorderW,
                y: this.thumbTop - this.offsetBorderH + this.thumbOffsetBorderH,
                w: this.thumbWidth,
                h: this.thumbHeight,
                imgW: this.thumbWidth,
                o: hs.outlineStartOffset
            },
            //hs.restoreDuration,
            //hs.restoreSteps
            1000,
            200
        );}
    } catch (e) { this.afterClose(); } 
    
    
    }
    
},

createOverlay : function (o) {
    var el = o.overlayId;
    if (typeof el == 'string') el = hs.getNode(el);
    if (!el || typeof el == 'string') return;
    
    
    var overlay = hs.createElement(
        'div',
        { id: 'hsId'+ hs.idCounter++ },
        {
            'left' : 0,
            'top' : 0,
            'position' : 'absolute',
            'zIndex' : 3,
            'visibility' : 'hidden'
        },
        this.wrapper,
        true
    );
    if (o.opacity) hs.setStyles(el, { opacity: o.opacity });
    el.style.styleFloat = 'none';
    el.className += ' highslide-display-block';
    overlay.appendChild(el);    
    
    overlay.hsPos = o.position;
    this.positionOverlay(overlay);    
    
    if (o.hideOnMouseOut) overlay.setAttribute('hideOnMouseOut', true);
    if (!o.opacity) o.opacity = 1;
    overlay.setAttribute('opacity', o.opacity);
    overlay.fade = o.fade;
    if(!sshow)hs.fade(overlay, 0, o.opacity);
    
    hs.push(this.overlays, hs.idCounter - 1);
    
    
        
    
    //popololo
},

positionOverlay : function(overlay, conH) {
    var left = this.offsetBorderW,
        dLeft = this.x.span - overlay.offsetWidth,
        top = this.offsetBorderH,
        dTop = (conH || parseInt(this.content.style.height)) - overlay.offsetHeight,
        p = overlay.hsPos || 'center center';
        
    if (/^bottom/.test(p)) top += dTop;
    if (/^center/.test(p)) top += dTop / 2;
    if (/right$/.test(p)) left += dLeft;
    if (/center$/.test(p)) left += dLeft / 2;
    //overlay.style.left = '50px';
    //overlay.style.top = '50px';
    overlay.style.left = left +'px';                       //Позиция стрелочек
    overlay.style.top = top +'px';
},

createOverlays : function() {
    for (var i = 0; i < hs.overlays.length; i++) {
        var o = hs.overlays[i], tId = o.thumbnailId, sg = o.slideshowGroup;
        if ((!tId && !sg) || tId == this.thumbsUserSetId
                || sg === this.slideshowGroup) {
            this.createOverlay(o);
        }
    }
},


createFullExpand : function () {
    this.fullExpandLabel = hs.createElement(
        'a',
        {
            href: 'javascript:hs.expanders['+ this.key +'].doFullExpand();',
            title: hs.fullExpandTitle,
            className: 'highslide-full-expand'
        }
    );
    
    this.createOverlay({ 
        overlayId: this.fullExpandLabel, 
        position: hs.fullExpandPosition, 
        hideOnMouseOut: true, 
        opacity: hs.fullExpandOpacity
    });
},

doFullExpand : function () {
    try {
        if (this.fullExpandLabel) hs.discardElement(this.fullExpandLabel);
        
        this.focus();
        
        this.x.min = parseInt(this.wrapper.style.left) - (this.fullExpandWidth - this.content.width) / 2;
        if (this.x.min < hs.marginLeft) this.x.min = hs.marginLeft;        
        this.wrapper.style.left = this.x.min +'px';
        
        hs.setStyles(this.content, { width: this.fullExpandWidth +'px', maxWidth: this.fullExpandWidth +'px',
            height: this.fullExpandHeight +'px'});
        
        this.x.span = this.fullExpandWidth;
        this.wrapper.style.width = (this.x.span + 2*this.offsetBorderW) +'px';
        
        this.y.span = this.wrapper.offsetHeight - 2 * this.offsetBorderH;
        
        if (this.objOutline)
            this.objOutline.setPosition(this, this.x.min, this.y.min, this.x.span, this.y.span);
        
        for (var i = 0; i < this.overlays.length; i++)
            this.positionOverlay(hs.$('hsId'+ this.overlays[i]));
        
        this.redoShowHide();
        
        
    
    } catch (e) {
        window.location.href = this.content.src;
    }
},


// on end move and resize
redoShowHide : function() {
    var imgPos = {
        x: parseInt(this.wrapper.style.left) - 20, 
        y: parseInt(this.wrapper.style.top) - 20, 
        w: this.content.offsetWidth + 40, 
        h: this.content.offsetHeight + 40 
            + this.spaceForCaption
    };
    if (hs.hideSelects) this.showHideElements('SELECT', 'hidden', imgPos);
    if (hs.hideIframes) this.showHideElements('IFRAME', 'hidden', imgPos);
    if (hs.geckoMac) this.showHideElements('*', 'hidden', imgPos);

},

afterClose : function () {
    
 
    this.a.className = this.a.className.replace('highslide-active-anchor', '');
    hs.noexpand = false;
    if (hs.hideSelects) this.showHideElements('SELECT', 'visible');
    if (hs.hideIframes) this.showHideElements('IFRAME', 'visible');
    if (hs.geckoMac) this.showHideElements('*', 'visible');
        if (this.objOutline && this.outlineWhileAnimating) this.objOutline.destroy();
    
        hs.discardElement(this.wrapper);
    hs.expanders[this.key] = null;        
    hs.reOrder();
    //alert('closs');
    clearTimeout(t);
    clearTimeout(t2);
}

};
// history
var HsExpander = hs.Expander;
if(is_body)hs.restoreTitle='Закрыть';
// set handlers
hs.addEventListener(document, 'mousedown', hs.mouseClickHandler);
hs.addEventListener(document, 'mouseup', hs.mouseClickHandler);
hs.addEventListener(window, 'load', hs.preloadImages);

function begin_slide()
{

//document.getElementById('controlbar').style.left='-9999px';
//alert('Начинаем');
//document.body.style.overflow='hidden';
//hs.sshow=true;
//clearTimeout(t);
sshow=true;
//process();
t2=setTimeout('document.getElementById("next_id").onclick()',sshow_period);
//alert(document.getElementById("next_id").id);
//document.getElementById("slideshow_link").innerHTML='<a href="#" id="slideshowend_link" onclick="slideshowend_link();return false;">Закончить слайд-шоу</a>';
document.getElementById("slideshow_link").id = 'slideshowend_link';
document.getElementById("slideshowend_link").onclick=function()
{
slideshowend_link();return false;
}
document.getElementById("slideshowend_link").innerHTML='Закончить слайд-шоу';




//document.getElementById("next_id").onclick();
//setTimeout('document.getElementById("next_id").onclick();',1000);
//hs.next(obj);
//hs.next(obj);
//hs.next(obj);

}

function slideshowend_link()
{
setTimeout('process();',1000);
document.getElementById('link_to_buffer').style.visibility='visible';
document.getElementById('vote_caption').innerHTML='Проголосовать';
//alert('Заканчиваем');
//document.getElementById("slideshowend_link").outerHTML=' <a href="#" id="slideshow_link" onclick="begin_slide(this);return false;">Начать слайд-шоу</a>';
document.getElementById("slideshowend_link").innerHTML='Слайд-шоу';
document.getElementById("slideshowend_link").onclick=function(){begin_slide(this);return false;};
document.getElementById("slideshowend_link").id='slideshow_link';
sshow=false;
clearTimeout(t);
clearTimeout(t2);
}

function getElementPosition(elemId)
{
    var elem = document.getElementById(elemId);
    
    var w = elem.offsetWidth;
    var h = elem.offsetHeight;
    
    var l = 0;
    var t = 0;
    
    while (elem)
    {
        l += elem.offsetLeft;
        t += elem.offsetTop;
        elem = elem.offsetParent;
    }

    return {"left":l, "top":t, "width": w, "height":h};
}
