function linkfx(id) {
	dojo.require("dojo.fx");
	dojo.addOnLoad(function() {
		var anim = dojo.fadeOut( {
			node : id,
			duration : 100
		});
		var anim2 = dojo.fadeIn( {
			node : id
		});
		dojo.fx.chain( [ anim, anim2 ]).play();
	});
}

function wipeInOne(id) {
	dojo.require("dojo.fx");

	dojo.fx.wipeIn( {
		node : id,
		duration : 300
	}).play();
}

function wipeOutOne(id) {
	dojo.require("dojo.fx");

	dojo.fx.wipeOut( {
		node : id,
		duration : 300
	}).play();
}
