// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
function show_item(id){
	 Effect.Appear(id, {duration: 0.5});
}

function hide_all(id1, id2, id3){
	var elem1 = document.getElementById(id1);
	var elem2 = document.getElementById(id2);
	var elem3 = document.getElementById(id3);
	elem1.style.display = 'none';
	elem2.style.display = 'none';
	elem3.style.display = 'none';	
}

function redirect() {
  setTimeout("location.href='http://localhost:3000/home'", 5000);
}
