// NOTE: this is assuming prototype and jquery are loaded.
// - at least jquery in noConflict()
var linkfarm = function () {
	return {
		openIt: function () {
			$j("#linkPanel").animate({
				"width":"300px"
			}, 500);
		},
		closeIt: function () {
			$j("#linkPanel").animate({
				"width":"0px"
			}, 500);
		}
	}
}();
