	function mouseLoad(obj)
	{
		if (isNS4 || obj.out) return;
		
		obj.out = new Image();
		obj.out.src = obj.src;
		obj.over = new Image();
		obj.over.src = obj.src.replace(/.gif$/, '_over.gif').replace(/.jpg$/, '_over.jpg');
		
		addMouseEvents(obj);
	}
	
		function tipLoad(obj, message, align, width, offset)
	{
		if (isNS4) return;
		
		if (! obj.tip)
		{
			obj.tip = message;
			if (align == null)
			{
				align = 'left';
			}
			obj.tipAlign = align;
			if (width == null)
			{
				width = 200;
			}					
			obj.tipWidth = width;
			if (offset == null)
			{
				offset = 210;
			}	
			obj.tipRightOffset = offset;
			addMouseEvents(obj);
			if (obj.nodeName == "A")
			{
				showTip(obj);
			}
		}
	}