function ShowHideLevel1(id, child_cnt){

	var curr_image = document.getElementById('bg1_'+id).style.backgroundImage;
	var curr_state = 'inactive'; 

	newBG = newArrow = '';
	if(curr_image == "url(/db1/images/store/index_menu-2_sub_bg.gif)"){
		curr_state = 'active'; 
	    newBG = "url(/db1/images/store/menu_all_cell_big.gif)";
		newArrow = "/db1/images/store/menu_all_cell_arrow_new_1.gif";
		document.getElementById('tr2_'+id).style.display = 'none';
//		setTimeout(function(){window.scrollBy(0, -22*child_cnt)}, 100);
	}
	else{
		newBG = "url(/db1/images/store/index_menu-2_sub_bg.gif)";
		newArrow = "/db1/images/store/menu_all_cell_arrow_new_2.gif";
		document.getElementById('tr2_'+id).style.display = '';
//		setTimeout(function(){window.scrollBy(0, 16*child_cnt)}, 100);
	}

    document.getElementById('bg1_'+id).style.backgroundImage = newBG;
    document.getElementById('ar1_'+id).src = newArrow;
}

function ShowHideLevel2(id, child_cnt){
	var ttt = document.getElementById('tr3_'+id);
	if(ttt.style.display == 'none'){
		ttt.style.display = '';		
//		var to = document.body.scrollTop+child_cnt;
//		alert(document.body.scrollTop+' + '+child_cnt);
//		setTimeout(function(){window.scrollBy(0, 7*child_cnt)}, 100);
	}
	else{
		ttt.style.display = 'none';
//		var to = document.body.scrollTop-child_cnt;
//		setTimeout(function(){window.scrollBy(0, -7*child_cnt)}, 100);
	}
}