function fadeoutto(target, link) {
	new Effect.Fade(target, {duration: 1, from: 1, to:0.01});
   setTimeout(function(){location.href = link;},1000);
   return false;
}

function blinddown(target) {
   Effect.BlindDown(target, {duration: 3.0 });
}

function blindup(target) {
   Effect.BlindUp(target, {duration: 3.0 });
}
