var DomPosition = Class.create();
	DomPosition.prototype = {
								x:null,
								y:null,
								initialize:function(x,y){
									this.x = x;
									this.y = y;
								},
								getX:function(){
									return this.x;
								},
								getY:function(){
									return this.y;
								}
							};
var sections = [
				{ID:"serv",TITLE:"Services",POSITION:new DomPosition("0px","0px"),IMGBACK:"ServicesOn",IMGMOUSE:'ServicesOff',"CONTENT":'ServicesContent'},
				{ID:"rate",TITLE:"Rates",POSITION:new DomPosition("180px","0px"),IMGBACK:"RatesOn",IMGMOUSE:'RatesOff',"CONTENT":'RatesContent'},
				{ID:"faq",TITLE:"FAQ's",POSITION:new DomPosition("360px","0px"),IMGBACK:"FaqsOn",IMGMOUSE:'FaqsOff',"CONTENT":'FaqContent'},
				{ID:"contact",TITLE:"Contact",POSITION:new DomPosition("540px","0px"),IMGBACK:"ContactOn",IMGMOUSE:'ContactOff',"CONTENT":'ContactContent'}];










