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

function stripe(table) {
	$$('#' + table + ' tr').select(function(tr){return tr.visible()}).each(function(tr, index){ index % 2 == 1 ? tr.style.backgroundColor = '#f3f7fd' : tr.style.backgroundColor = '#fff'});
}