﻿var sodfall_infotext = false;

function slideOut(){
  $('.teaser-sodfall-content-wrapper').animate({
    marginLeft: '340'
  }, 100, function() {
    stopAnimateArrow();
    $('.teaser-sodfall-infotext').css('display', 'block');
    $('.teaser-sodfall-toggle-handler-gfx').attr('src', '/Files/Billeder/riopan/arrow-left.png');
    $('.teaser-sodfall-content-wrapper').animate({marginLeft: '678'},300, function(){
      sodfall_infotext = true;
    });
  });
}

function slideIn(){
  $('.teaser-sodfall-content-wrapper').animate({
    marginLeft: '340'
  }, 300, function() {
    animateArrow();
    $('.teaser-sodfall-infotext').css('display', 'none');
    $('.teaser-sodfall-toggle-handler-gfx').attr('src', '/Files/Billeder/riopan/arrow-right.png');
    $('.teaser-sodfall-content-wrapper').animate({marginLeft: '678'},100, function(){
      sodfall_infotext = false;
    });
  });
}

var timerAnimateArrow;
function animateArrow(){
  $('.teaser-sodfall-toggle-handler-gfx').css('position', 'absolute');
  $('.teaser-sodfall-toggle-handler-gfx').animate({marginLeft: '11'},300, function(){
    $('.teaser-sodfall-toggle-handler-gfx').animate({marginLeft: '8'},300);
    timerAnimateArrow = setTimeout("animateArrow()", 1500);
  });
}

function stopAnimateArrow(){
  clearTimeout(timerAnimateArrow);
  $('.teaser-sodfall-toggle-handler-gfx').stop(true, true);
  $('.teaser-sodfall-toggle-handler-gfx').css('marginLeft', '8');
  $('.teaser-sodfall-toggle-handler-gfx').css('position', 'static');
}


$(document).ready(function(){

  $('.slider-wrapper').cycle({ 
    fx: 'fade'
  });
  
  $('.teaser-sodfall-toggle-handler').click(function() {
    if (!sodfall_infotext) slideOut(); else slideIn();
  }); 

  animateArrow();
  
});
