<?xml version="1.0"?>
<bindings xmlns="http://www.mozilla.org/xbl" xmlns:html="http://www.w3.org/1999/xhtml">
 <binding id="custom" styleexplicitcontent="true"> 
  <implementation> 
	<constructor>
	<![CDATA[
        this.style.cursor='pointer';
		var myid=this.id;
		var menuboard=myid+"menu";
        self.document.getElementById(menuboard).style.display='';
		self.document.getElementById(menuboard).style.display="none";

	]]>
	
	</constructor>
	</implementation> 
  <handlers>
   <handler event="mousedown">
      <content>
		<html:script>
		<![CDATA[
		var myid=this.id;
		var menuboard=myid+"menu";
		var thisobj=this;
		function showtbe(){
			if(self.document.getElementById(menuboard).style.display=="none"){
				self.document.getElementById(menuboard).style.display="";
			     thisobj.style.backgroundImage='url(skin/freshblue/stylepic/t11.gif)';
			}
			else{
				self.document.getElementById(menuboard).style.display="none";
			     thisobj.style.backgroundImage='url(skin/freshblue/stylepic/t1.gif)';
			}
		}

        showtbe();

		]]>
		</html:script>
   </content>
   </handler>

  </handlers>
 </binding> 
</bindings>