$(	function()	{		// set up rollover		$("img.rollover").hover(			function()			{				this.src = this.src.replace("_top\.gif","_top_over\.gif");			},			function()			{				this.src = this.src.replace("_top_over\.gif","_top\.gif");			}		);	})