$(document).ready(function(){

  $('.open-contact').click(function(){
    $('#contact').slideDown(250);
  });
  
  $('#contact-close').click(function(){
    $('#contact').slideUp(250);
    return false;
  });
  
  $('#process').addClass('closed')
  
  $('#process li:not(.first)').animate({
    left: '19%'
  }, 400)
  
  $('#process li:nth-child(3),#process li:nth-child(4),#process li:nth-child(5)').animate({
    left: '38%'
  }, 400)
  
  $('#process li:nth-child(4),#process li:nth-child(5)').animate({
    left: '57%'
  }, 400)
  
  $('#process li:nth-child(5)').animate({
    left: '76%'
  }, 400)
  
  /*
if( $('#un1fyFrameShim') ) {
    $('#contact').slideDown(250);
  }
*/
  
  $.colorbox.init()
  $("a[rel='smartstart']").colorbox({maxWidth: "100%"});

});
