$(document).ready(function(){
  $('form#get_in_touch').validate({
    rules: {
      'contact[name]': {
        required: true
      },
      'contact[email]': {
        required: true,
        email: true
      }
    },
    errorPlacement: function (error, element) {
      element.addClass('error');
    }
  });
  
  $('#user_email_confirmation').hide().prev('label').hide();
  
  $('.scrollable').scrollable().navigator();
  
  $('.navi > a').each(function(index) {
    if ($('.projects .project:nth-child(' + (index + 1) + ')').hasClass('ios')) {
      $(this).addClass('ios');
    }
  });
  
  $('a[href=#idea]').smoothAnchor({ duration: 700 });

  $('.simple_overlay > a.close').click(function () {
    $(this).parent().hide();
  });
});
