// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
function fader(fade_these){
		fade_these.each(function(s) {
		  new Effect.Fade(s);
		});

}

function shower(show_these){
	show_these.each(function(s) {
		$(s).show();
	});
}
function toggler(toggle_these){
	toggle_these.each(function(s) {
	  $(s).toggle();
	});
}
function hider(hide_these){
	hide_these.each(function(s) {
	  $(s).hide();
	});
}