function showId(obj, element, level) {
	showIdOffset(obj, element, 0, 16, level);
}

var showStatus=false;
function  showhide()
 {
	if(showStatus==false)
	 {
		document.getElementById('shopbytype').style.display="none";
		document.getElementById('mainImageS').src='/images/triangleright.gif';
		showStatus=true;
	 }
	else
	 {
		document.getElementById('shopbytype').style.display="inline";
		document.getElementById('mainImageS').src='/images/trianglered2.gif';
		showStatus=false;
	 }
 }
var showStatus2=false;
function  showhide2()
 {
	if(showStatus2==false)
	 {
		document.getElementById('shopbydepartment').style.display="none";
		document.getElementById('mainImageS1').src='/images/triangleright.gif';
		showStatus2=true;
	 }
	else
	 {
		document.getElementById('shopbydepartment').style.display="inline";
		document.getElementById('mainImageS1').src='/images/trianglered2.gif';
		showStatus2=false;
	 }
 }
