<!--
	function sm_over(element){
	  old_class = element.className;
	  element.className = 'over';
	}
	function sm_out(element){
	  element.className = old_class;
	}
	
	function sm_hd_over(element){
	  old_class = element.className;
	  //element.className = 'over';
	  img = document.getElementById(element.id + '-arr');
	  old_img = img.src;
	  img.src = 'http://img.wallstreet-online.de/icons/sm_hd_open.gif';
	}
	function sm_hd_out(element){
	  //element.className = old_class;
	  img.src = old_img;
	}
	
	arr = new Image();
	arr.src = 'http://img.wallstreet-online.de//icons/sm_arr.gif';
	
	function deactivate(div){
		div_hd = document.getElementById('sm-' + div + '-hd');
		div_cnt = document.getElementById('sm-' + div + '-cnt');
		
		div_cnt.style.display = 'none';
		
		div_hd.className = 'sm-head-inactive';
	}
	
	function toggle(div){
		div_hd     = document.getElementById('sm-' + div + '-hd');
		div_hd_arr = document.getElementById('sm-' + div + '-hd-arr');
		div_cnt    = document.getElementById('sm-' + div + '-cnt');
		
		if(div_cnt.style.display != 'none'){
			div_cnt.style.display = 'none';
			div_hd.className      = 'sm-head-inactive';
			div_hd_arr.src = old_img = 'http://img.wallstreet-online.de/icons/sm_hd_close.gif';
			//div_hd_arr.className  = 'arr-hd-inactive';
		}else{
			div_cnt.style.display = 'block';
			div_hd.className      = 'sm-head';
			div_hd_arr.src = old_img = 'http://img.wallstreet-online.de/icons/sm_hd_open.gif';
			//div_hd_arr.className  = 'arr-hd';
		}
	}
-->

