var on_thumb = function () {
  alert('onhover');
  $('info').fade('in'); 
}

window.addEvent('domready', function() {
 $('info').fade('hide'); 
  
$$('.logo_tmb').each(function(el) {
  
  el.set('morph', {duration:200, link:'cancel'}).addEvents({
    'mouseenter': function() { this.morph({ 'padding-left': 30,  'padding-right': 30}); 
                               $('info').setStyle('color','red');
							   $('info').set('html','Mehr Informationen folgen bald hier ...');							   						   
							   $('info').fade('in');                             
                                },
    'mouseleave': function() { this.morph({ 'padding-left': 5 ,  'padding-right': 5});                                                             
								$('info').fade('out'); 
                             },
    'click': function(e) { 
							$('info').highlight('#ddf', '#ccc');
							e.preventDefault();
	}
  });
});  
 
$$('.logo_tmb_remooz').each(function(el) {
  el.set('morph', {duration:200, link:'cancel'}).addEvents({
    'mouseenter': function() { this.morph({ 'padding-left': 30,  'padding-right': 30}); 
							    $('info').set('html','Bitte anklicken fur weitere Informationen...');
								$('info').setStyle('color','#444')
								$('info').fade('in'); 	
                                },
    'mouseleave': function() { this.morph({ 'padding-left': 5 ,  'padding-right': 5});
								$('info').fade('out'); 	
                             }//,
  //  'click': function() { $('info').highlight('#ddf', '#ccc');}
  });
}); 
  
// var px = new mooSlide2({ slideSpeed: 1700, fadeSpeed: 500, effect:"linear",  toggler:'atu_toggler', content:'atu', height:250, removeOnClick: true, opacity:'1', effects:Fx.Transitions.Bounce.easeOut, executeFunction:'sayGoodbye()', from:	'bottom'});  
  
});