$(document).ready(function(){
  $('#birthdate').datepicker({
    dateFormat: 'yy-mm-dd',
    yearRange: "1910:2011",
    changeMonth: true,
    changeYear: true,
    showButtonPanel: true
  });

  $('#article-date, #start_date, #end_date').datepicker({
    dateFormat: 'yy-mm-dd',
    yearRange: "2008:2050",
    showButtonPanel: true
  });
  
  $('.alt-title').hide();
  
  // accept add button pretty
  $('.partner_req input').each(function (i) {
    var email = $(this).attr('value').split(' ');
    $(this).attr('value', email[0]);
    $(this).attr('id', email[1]);
  });
  
  // ugly again
  $("form").submit(function () {
    $('.partner_req input').each(function (i) {
      $(this).attr('value', $(this).attr('value')+" "+$(this).attr('id'));
    });
  });
});