/* This function is used to change the style class of an element */
function changeclass(id){  	
	$("#"+id).addClass("drawerscurrent");
}

// Show the document's title on the status bar
window.defaultStatus=document.title;

var btn = document.getElementsByTagName('input');

for(var i=0;i<btn.length;i++){
  if( btn[i].className == 'button1'){
  btn[i].onmouseover = function(){
      this.className = 'button1on' ;
  };
  btn[i].onmouseout = function(){
      this.className = 'button1' ;
  };
  
  }
}





