// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function timeoutFlash( timeout ) {
  if( $('#flashbox').length != 0 )
    setTimeout( "$('#flashbox').fadeOut('slow');", timeout )
}

function add_fields( link, association, content ) {
  var new_id = new Date().getTime();
  var regexp = new RegExp("new_" + association, "g")
  $(link).parent().prev('.' + association).append(content.replace(regexp, new_id));
}
