
function hoverheader(theHandler,theTarget) {
	
	
	window.addEvent('domready', function() {
										 
		var el = $(theTarget);
		el.setStyle('opacity', 0);
		el.setStyle('display', 'none');
	
		$(theHandler).addEvent('mouseout', function(e) {
			// You often will need to stop propagation of the event
			e.stop();
			el.set('tween', {duration: '500'});
			el.fade('out');
			//el.setStyle('display', 'none');
		});
		
	
		$(theHandler).addEvent('mouseover', function(e) {
			e.stop();
			el.setStyle('display', 'block');
			el.set('tween', {duration: 'short'});
			el.fade('in');	
		});
		
		
	});
		
	
}

// Shorties Background-Fader
window.addEvent('domready', function() {
	
	var teaserItem = $$('.layout_short');
	
	teaserItem.addEvent('mouseover', function(e) {
		//alert('xxx'); 
		e.stop();
		this.set('tween', {duration: '200'});		
		this.tween('background-color', '#333');

	});
	
	teaserItem.addEvent('mouseleave', function(e) {
		//alert('xxx'); 
		e.stop();
		this.set('tween', {duration: '500'});
		
		this.tween('background-color', '#fff');

	});
	
	
});