/**
 *
 *
 *
 *
 **/

//
var h;
var c = 'hartmut';

/**
 *
 * @access public
 * @return void
 **/
function showME(j){
	document.getElementById(j).className = c;
	h = j;
}

/**
 *
 * @access public
 * @return void
 **/
function hideME(j){
	if (h.length>0) {
		document.getElementById(h).className = '';
	}
}

/**
 *
 * @access public
 * @return void
 **/
function showMe() {
	if (h.length>0) {
		document.getElementById(h).className = c;
	}
}

/**
 *
 * @access public
 * @return void
 **/
function hideMe(){
	if (h.length>0) {
		document.getElementById(h).className = '';
		h = '';
	}
}

/**
 *
 * @access public
 * @return void
 **/
function slide(id){
	alert(id);
}
