/* 
 * die.socialisten.at
 *
 * you really shouldnt be reading sourcecode
 * go play with a ball or stare at a good book.
 *
 */


Window.addEvent("domready", function () { 
 var all_a = $$('#kunden ul li a');
 all_a.addEvent('mouseover', function () {
                         			this.getFirst().setProperty('src', 
                         			                "/wp-content/themes/socialisten/images/kunden/"+this.getFirst().getProperty("alt") 
                         			                + "_ro.png"
                         			          		  );
                             })
       .addEvent('mouseout', function () {
       			                  this.getFirst().setProperty('src', 
                         			                "/wp-content/themes/socialisten/images/kunden/"+this.getFirst().getProperty("alt") 
                         			                + ".png"
                         			          		  );
                             });
});