$(function(){

//18

  $('ul.jtabs').tabs();

	$('.slideshow ul').jqGalScroll();

	  $('.super-block').show();
  

/*  $('#home-slideshow .slideshow-img img').hide();
  $('#home-slideshow .slideshow-img img:first').show();
  slideshowUpdateDesc();

  $('#home-slideshow .arrow-btns .right').click(function(){
    var current = $('#home-slideshow .slideshow-img img:visible');
    if (current.next().length == 0) {
      current.hide();
      $('#home-slideshow .slideshow-img img:first').show();
    } else {
      current.hide();
      current.next().show();
    }
    slideshowUpdateDesc();
  });

  $('#home-slideshow .arrow-btns .left').click(function(){
    var current = $('#home-slideshow .slideshow-img img:visible');
    if (current.prev().length == 0) {
      current.hide();
      $('#home-slideshow .slideshow-img img:last').show();
    } else {
      current.hide();
      current.prev().show();
    }
    slideshowUpdateDesc();
  });

  $('#home-slideshow').show(); */

});

/*
function slideshowUpdateDesc() {
  var current = $('#home-slideshow .slideshow-img img:visible');
  $('.slideshow-img-description .description-content').text( current.attr('alt'));
  $('.slideshow-img-description h2').text( current.attr('title'));
} */

