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