function Point (x, y)
{
	this.x = x;
	this.y = y;
}

function PhotoInfo (filename, title, photographer, width, height, ratio, offset, timestamp)
{
	this.filename = filename;
	this.title = title;
	this.photographer = photographer
	this.width = width;
	this.height = height;
	this.ratio = ratio;
	this.offset = offset;
	this.timestamp = timestamp;
}

function CatInfo (path, title, count, time)
{
	this.path = path;
	this.title = title;
	this.count = count;
	this.time = time;
}

var cursorStyle = new Object();
cursorStyle.normal = "default";
cursorStyle.grab = "url(grab.cur) 16 16, url(grab.cur), -moz-grab";
cursorStyle.grabbing = "url(grabbing.cur) 16 16, url(grabbing.cur), -moz-grabbing";

