var anzeigeelement = null;
window.addEvent('domready', function() { 
	$$('div.mitarbeiter').addEvents({
    		'mouseover': function(){
					this.set('tween', {duration: 200});
					this.tween('background-color', '#ebf0b6');
			},
			'mouseout': function(){
					this.set('tween', {duration: 300});
					this.tween('background-color', '#ffffff');
				},
		'click': function(){
				var textdiv = this.getChildren('div.mitarbeiterhidden');
				if( anzeigeelement != null ){
					$('mitarbeiteranzeige').set('html',textdiv.get('html'));
				}else{
					anzeigeelement = new Element('div', {
						'id' : 'mitarbeiteranzeige',
						'html' : textdiv.get('html')
					});
					$('Content').adopt(anzeigeelement );
				}
			}
	});
	$$('div.ct_linkbox').addEvents({
		'click': function(){
			var link = this.getElements('a');
			for (var i = 0;i<link.length;i++)
			{
 				if( link[i].getProperty('html') == 'findmylink' ){
					if( link[i].getProperty('target') == '_blank' ){
 						var newWindow = window.open(link[i].getProperty('href'), '_blank');
 						newWindow.focus();
						return false;
					}else{
						window.location.href = link[i].getProperty('href');
					}
				}
			}
	 	},
		'mouseover': function(){
			this.set('tween', {duration: 200});
			this.tween('background-color', '#ebf0b6');
			//this.setStyle('background-color','#90C131');
	 	},
		'mouseleave': function(){
			this.set('tween', {duration: 500});
			this.tween('background-color', '#ffffff');
	 		//this.setStyle('background-color','#c9df94');
		}
	});

});