function loadpage(){
	var myFx1 = new Fx.Tween($('WorkTitle'),{duration: 400,onComplete: function(){}}).set('opacity',0).start('opacity', 0.75);
	var myFx2 = new Fx.Tween($('SlideNumber'),{duration: 400,onComplete: function(){}}).set('opacity',0).start('opacity', 0.75);
	new Fx.Reveal($('WorkInfo')).reveal();
}
function leavepage(url){
	var myFx1 = new Fx.Tween($('WorkTitle'),{duration: 400,onComplete: function(){}}).set('opacity',0.75).start('opacity', 0);
	var myFx2 = new Fx.Tween($('SlideNumber'),{duration: 400,onComplete: function(){}}).set('opacity',0.75).start('opacity', 0);
	new Fx.Reveal($('WorkInfo')).dissolve();
	(function(){ gotopage(url); }).delay(500);
}