function Preferences(){
this.template = null;      
this.buffer = null;
this.open_time_delay = 500;
this.close_time_delay = 300;
this.node = new Array();
this.node.normal = new Object();
this.node.normal.src = 'images/template4/node.gif';
this.node.normal.width = 6;
this.node.normal.height = 10;
this.node.hover = new Object();
this.node.hover.src = 'images/template4/node.gif';
this.node.hover.width = 6;
this.node.hover.height = 10;
this.cursor = new Object();
this.cursor.normal = 'normal';
this.cursor.hover = 'hover';
this.style = new Object();
this.style.filter = 'alpha(opacity=90,style=0);';
this.style.text = new Object();
this.style.text.normal = '#990033';
this.style.text.hover = '#990000';
this.tolerance = new Object();
this.tolerance.x = 15;
this.tolerance.y = -5;
this.icon = new Object();
this.icon.normal = new Object();
this.icon.normal.src = 'images/template4/icon_normal.gif';
this.icon.normal.width = 9;
this.icon.normal.height = 9;
this.icon.hover = new Object();
this.icon.hover.src = 'images/template4/icon_hover.gif';
this.icon.hover.width = 9;
this.icon.hover.height = 9;
this.setselection = function(i)
{
   document.getElementById(this.items[i].names.myself).className = this.cursor.hover;
}
 this.unselection = function(i)
 {
   document.getElementById(this.items[i].names.myself).className = this.cursor.normal;
 }
}
preferences = new Preferences();
saved = new Preferences();