	<!--
/********** GENERAL */	
	/**	Get an element by ID */
		function ke_byID(id_value){
			return document.getElementById(id_value);
		}
		
	/**	Hide an element	*/
		function ke_hide(id_value){
			if (ke_byID(id_value)==undefined) alert(id_value+' is "undefined"');
			ke_byID(id_value).style.display='none';
		}
	/** Display an element */
		function ke_display(id_value){
			if (ke_byID(id_value)==undefined) alert(id_value+' is "undefined"');
			ke_byID(id_value).style.display='inline';
		}
	
	/**	Alternative Hide an element	*/
		function ke_Ahide(id_value){
			if (ke_byID(id_value)==undefined) alert(id_value+' is "undefined"');
			ke_byID(id_value).style.position='absolute';
			ke_byID(id_value).style.visibility='hidden';
		}
	/** Alternative Display an element */
		function ke_Adisplay(id_value){
			if (ke_byID(id_value)==undefined) alert(id_value+' is "undefined"');
			ke_byID(id_value).style.position='relative';
			ke_byID(id_value).style.visibility='visible';
		}
		
		
/********** SELECT.options FUNCTIONS */	
	/** Add option to a SELECT object */
		function ke_SelectAddOption(id_value,text_value,value){
									if (ke_byID(id_value)==undefined) alert(id_value+' is "undefined"');
						option=document.createElement('OPTION');
						ke_byID(id_value).options.add(option);
						option.text=text_value;
						option.value=value;
								}

	/** Delete option from a SELECT object */
		function ke_SelectDeleteOption(id_value,option_index){
									if (ke_byID(id_value)==undefined) alert(id_value+' is "undefined"');
						ke_byID(id_value).options[option_index]=null;
								}
		
	/** Empty a SELECT object */
		function ke_SelectEmpty(id_value){
									if (ke_byID(id_value)==undefined) alert(id_value+' is "undefined"');
						while (ke_byID(id_value).length>0) ke_SelectDeleteOption(id_value,0);
								}
		
function rowOverEffect(object) {
  if (object.className == 'dataTableRow') object.className = 'dataTableRowOver';
}

function rowOutEffect(object) {
  if (object.className == 'dataTableRowOver') object.className = 'dataTableRow';
}		
	//-->


function toggle( targetId ){
	if (document.getElementById){
		target = document.getElementById( targetId );
		if (target.style.display == "block"){
			target.style.display = "none";
		}
		else {
			target.style.display = "block";
		}
	}
}

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("mcategorii");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI")  {
node.onmouseover=function() {
this.className+="over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace("over", "");
   }
   }
  }
 }
}
window.onload=startList;


function show_spec(id){
		for(i=1; i<=2; i++){
			ke_byID('psec_'+String(i)).style.display='none';
			ke_byID('li_'+String(i)).className='sss';
		}				 	
			ke_byID('psec_'+id).style.display='block';
			ke_byID('li_'+id).className='current';
}

function show_spec2(id){
		for(i=1; i<=3; i++){
			ke_byID('psec_'+String(i)).style.display='none';
			ke_byID('li_'+String(i)).className='sss';
		}				 	
			ke_byID('psec_'+id).style.display='block';
			ke_byID('li_'+id).className='current';
}