var $scrollDiv = 0;
var curPoz = 0;
var nextPoz = 0;
var delay01 = 0;
var speed = 8;
var parentHeight = 0;
var stopPoint = 0;
var  startPoint = 0;
var itSpeed = 100;  //viteza iteratiei

  function initPanes(){
    var lungimeContainer = $('#formular_contact_form').innerWidth();
    var numarPanouri = $('.progres-pane').length;
    var lungimeSlide = numarPanouri * lungimeContainer;

    $('#panes').css({'width':lungimeSlide+'px'
                                });
    $('.progres-pane').css({
                           'float':'left',
                           'width': lungimeContainer+'px'
                           });

  }

  function displayProgresPane(paneNr){
    var lungimeContainer = $('#formular_contact_form').innerWidth();
    nextPoz = -(paneNr-1)*lungimeContainer;

    // $('#progres-pane-view').css({'left':nextPoz});
    $('#panes').animate({
      'left':nextPoz+'px'
    }, 500);
  }

  function nextPane(currentPane){
    var lungimeContainer = $('#formular_contact_form').innerWidth();
    nextPoz = -(currentPane)*lungimeContainer;

    $('#panes').animate({
      'left':nextPoz+'px'
    }, 500);
  }
$(document).ready(function() {
  initPanes();
  
  $('.next').click(function(){
      $('html, body').animate({scrollTop: $("#center").offset().top}, 700);
  });	
});
