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

var AjaxIndicator = {}

AjaxIndicator = {
  show: function() {
    Element.show('ajax-indicator');
  },
  
  hide: function() {
    Element.hide('ajax-indicator');
  }
}

function highlightListRow(obj) {
	obj.oldColor = obj.bgColor;
	obj.bgColor = "#FFCC33";	
}

function unhighlightListRow(obj) {
	obj.bgColor = obj.oldColor;
}