		var active = 1;
		var width = 10;
		var bolInit = false ;
		var bolMouseOver = false ;

		function toggle_visible() {
			if(active == 0) {
				active = 1;
				divPlusOne();				
			} else if(active == 1){
				active = 0;	
				divMinusOne();
			}
		}
		
		window.onload = setToggleOnload ;
		
		function setToggleOnload() {
			try {
				document.getElementById('channelstamp').onmouseover = checkMouseOver ;
				document.getElementById('channelstamp').onmouseout  = checkMouseOut ;
				bolInit = true ;
			} catch(e) {
				
			}
		}
		
		function checkMouseOver() {
			bolMouseOver = true ;
		}
		function checkMouseOut() {
			bolMouseOver = false ;
		}
		
		function divPlusOne() {
			
			if(!bolInit || bolMouseOver) {
				if( width <= 185 ) {
					document.getElementById('memberof').style.visibility="visible";	
					width = width + 15;
					document.getElementById('memberof').style.width=width + 'px';		
					window.setTimeout('divPlusOne()', 15);
					
					//Schrift erst nach 400ms anzeigen
					//window.setTimeout("document.getElementById('claim').style.display='block' ",200);  
				}
				
				if(width > 160) {
					document.getElementById('claim').style.display='block' ;
				}
			}
			if(!bolInit) {
				
			}
			
		}
		
		function divMinusOne() {
			if (!bolMouseOver) {
				if (width >= 20) {
					width = width - 15;
					document.getElementById('memberof').style.width = width + 'px';
					window.setTimeout('divMinusOne()', 15);
					
					if (width > 160) {
						document.getElementById('claim').style.display = 'block';
					}
					else {
						document.getElementById('claim').style.display = 'none';
					}
				}
				else {
					document.getElementById('memberof').style.visibility = "visible";
				}
			}
		}