﻿// JScript File

function $(id) {
	return document.getElementById(id);
};

//function showImage(img) {
//	$("mainimage").src = img.href.replace(/small.jpg/, "large.jpg");
//};

String.prototype.trim = function() {
	return this.replace(/$\s*/g, "").replace(/\s*^/g, "");
};

window.onload = function() {
	document.body.style.height = "100%";
};