// $.preloadImages("ok_on.gif", "cancel_on.gif");
$(
	function()
	{
		// set up rollover
		$("img.rollover").hover(
			function()
			{
				this.src = this.src.replace("_a","_b");
			},
			function()
			{
				this.src = this.src.replace("_b","_a");
			}
		);
	}
)
