



function show_description(nr,cat) {
//hide_all();
document.getElementById('cat'+nr+'').style.display = 'block';
//var cat1 = 0;
//document.getElementById('cat'+cat+'').style.display = 'none';
if (cat == 0) {} else {
document.getElementById('cat'+cat+'').style.display = 'none';
}
}
function hide_description(nr,cat) {
document.getElementById('cat'+nr+'').style.display = 'none';
if (cat == 0) {} else {
document.getElementById('cat'+cat+'').style.display = 'block';
}
}
function hide_all() {
for(var i=1; i<= 8; i++) {
document.getElementById('cat'+i+'').style.display = 'none';
document.getElementById('option'+i+'').style.backgroundColor = '#FFFFFF';
}
}
function select(id) {
 if(id!=""){
   hide_all();
   show_description(id,0);
   document.getElementById('option'+id+'').style.backgroundColor = '#BDC8CD';
 }else{
   var option = document.FormSearch.cat.value;
   hide_all();
   show_description(option,0);
   document.getElementById('option'+option+'').style.backgroundColor = '#BDC8CD';
 }
}

