
/* sections/lawn_garden/pestControl.js */

 /**
 * @author dnawara
 */
var MMH;
if (typeof MMH === 'undefined') {
    MMH = {};
}
(function () {
	
	MMH.Pest = {
		
		initPests: function () {

		$('pest_control_list').childElements().each(function(pestItem){
			pestItem.observe('mouseover', function(ev){
				theHtml = pestItem.childElements();
				theHtml[0].down().src = theHtml[0].down().src.replace('OFF','ON');
				$('pest_target').update(theHtml[1].innerHTML)
			})
			pestItem.observe('mouseout', function(ev){
			theHtml[0].down().src = theHtml[0].down().src.replace('ON','OFF');
			$('pest_target').update('');
			});
		})
		}
		}
		})();
