/*function toggleSidebar() {
  var leftCol = $('#leftmenu');
  var rightCol = $('#leftmenu');

  if(rightCol.is(':visible')) {
    rightCol.hide();
    leftCol.css({width: '676px'}).addClass('hideBg');
  } else {
    leftCol.css({width: '432px'}).removeClass('hideBg');;
    rightCol.show();
  }
}*/

function toggleimageBlock() {
  $('div#imageBlock').slideToggle();
}

function togglePanel(elm) {
  var elm;
  var id = elm.attr('id');
  var siblings = elm.parent().siblings().find('div.output:visible');
  var child = elm.next('div.output');

  // SHOW CHILD OUTPUT
  child.slideToggle(350,function(){elm.toggleClass('selected');},'easeout');

  // HIDE SIBLINGS
  siblings.slideUp(700, function(){$(this).prev('div.title').removeClass('selected');}, 'easeout');

  return false;
}
var tSlideMenuObject = null;
$(document).ready(function() {
  //$('div.sbBlock','div#collapse').children('div.title').click(function(){ togglePanel($(this)) });
  //$('div.sbBlock','div#collapse').children('div.title').mouseover(function(){ if(tSlideMenuObject != this) {togglePanel($(this)); tSlideMenuObject=this;} });
  $('div.sbBlock','div#collapse').children('div.title').click(function(){ 
	if(tSlideMenuObject != this) {
		togglePanel($(this));
		tSlideMenuObject=this;
		} 
	}
);

  $('div.output','div.sbBlock').not($("div.images")).hide();
  $('div.images').prev().addClass('selected');
  if ($('#reflect_archivelist').length) {
    $("li.reflect_year:gt(0) div.reflectWrapper").hide();
    $("li.reflect_year div.titleBlock").click(
    function(){
      $("div.reflectWrapper:visible").hide();
      $(this).parent().find("div.reflectWrapper:hidden").show();
    });
  }
  if ($('#articleScroll, #regularScroll, #galleryScroll').length > 0) {
    $('#articleScroll').cycle({ fx: 'scrollDown', sync: 1, delay: 5000,	timeout: 10000 });
    $('#regularScroll').cycle({ fx: 'scrollDown', sync: 1, delay: 6000,	timeout: 10000 });
    $('#galleryScroll').cycle({ fx: 'scrollDown', sync: 1, delay: 7000,	timeout: 10000 });
  }

  var open = false;
  $('ul.nl_summaryPost a').each(
  function() {
    var skip = true;
    var href = $(this).attr('href');
	//alert("href=" + href + ", URL = " + document.URL);
	var str = Array();
	str = document.URL.split("/");
	
	if(str[3] == "catalogue" && href == "/catalogue/?type=3"){
		skip = false;
		}

    if(document.URL == href) {
      skip = false;
    }
	if( (document.URL == "http://teros.com.ua/" || document.URL == "http://www.teros.com.ua/") && href == "/catalogue/?type=3")
	{
		skip = false;	
	}

    if(skip && document.URL.indexOf(href) > -1) {
      skip = false;
    }
	

    if(skip || open) return;
    
    $(this).parents().each(
    function () {
		//alert("class = "+$(this).attr('class'));
      if($(this).attr('class') == 'sbBlock list') {
        if(open) return;
        tSlideMenuObject = $(this).children('div.title').get(0);
        togglePanel($(tSlideMenuObject));
        open = true;
      }
    }
    );
  }
  );
});
