function ArtEvent(nameOfEvent,eventType,startEvent,endEvent){
	this.name=nameOfEvent;
	this.type=eventType;
	this.start=new Date(startEvent);
	this.end=new Date(endEvent);
	this.address="";
	this.city="";
	this.state="";
	this.phone="";
	this.hours="";
	this.comment1="";
	this.comment2="";
	this.linkInfo="mailto:janed@san.rr.com?subject="+escape(nameOfEvent);
}
ArtEvent.EXHIBITION=0;
ArtEvent.SHOW=1;
ArtEvent.FAIR=2;
ArtEvent.DEMO=3;
ArtEvent.LECTURE=4;
ArtEvent.WORKSHOP=5;
