$(document).ready(function()
{
  $(".tip_alg_info").hide();
  $(".tip_alg_info_sel").hide();


  $(".tip_alg").toggle(function()
  {
    $(this).next(".tip_alg_info").slideDown(100);

  }, function()
  {
    $(this).next(".tip_alg_info").slideUp(300);
  });

  $(".tip_alg_sel").toggle(function()
  {
    $(this).next(".tip_alg_info_sel").slideDown(100);

  }, function()
  {
    $(this).next(".tip_alg_info_sel").slideUp(300);
  });

  $('.tip_alg_sel').click();
});

$(document).ready(function() {
  if( document.getElementById( 'horSlide' ) )
  {
    $('#horSlide').s3Slider({
      timeOut: 5000
    });
  }
  if( document.getElementById( 'sliderV' ) )
  {
    $('#sliderV').s3Slider({
      timeOut: 5000
    });
  }
});


