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

function visiblize(something) {
	document.getElementById(something).style.display = "block";
}

function toggleVisibility(elementId){
	var e = document.getElementById(elementId);
	e.style.display == "none" ? e.style.display = "block" : e.style.display = "none";
}

function invisiblize(elementId){
	window.setTimeout( "function()", 10000);
	document.getElementById(elementId).style.display = "none";
}

$( function() {
  $(".initial_focus").focus();
  $(".add_note").click( function() {
    $("#new_note_for_2").removeClass('hidden');
    $("#new_note_for_2 #contact_note_content").focus();
  });
});
