function showhideObj(obj,expand){
    obj.className = obj.className == "col" ? "exp": "col";
    expand.className = expand.className == "lev1 close" ? "lev1 open": "lev1 close";
}
function showhideObj2(lock,ex){
    obj = document.getElementById(lock);
    expand = document.getElementById(ex);
    obj.className = obj.className == "col" ? "exp": "col";
    expand.className = expand.className == "lev2 close" ? "lev2 open": "lev2 close";
}
function showhideObj3(obj,expand){
    obj.className = obj.className == "col" ? "exp": "col";
    expand.className = expand.className == "services_head close" ? "services_head open": "services_head close";
}

function shObj(lock,ex){
	obj = document.getElementById(lock);
	expand = document.getElementById(ex);
    obj.className = obj.className == "col" ? "exp": "col";
    expand.className = expand.className == "kt" ? "open": "kt";
}


function doVisBox(id,idl)
{	document.getElementById(id).className='exp';
	document.getElementById(idl).href='javascript:doClsBox(\'cat_i\',\'cat_link\')';
}

function doClsBox(id,idl)
{
	document.getElementById(id).className='col';
	document.getElementById(idl).href='javascript:doVisBox(\'cat_i\',\'cat_link\')';
}