window.addEvent('domready', function() {
	var overlay = new Overlay();
	var box = new multiBox('donate', {
					overlay : overlay
			});
	window.currentBox = box;
	
	var donateButtonEffect = new Fx.Tween($('donateTitle'), {
		duration: 1500,
		transition: 'quad:out',
		property: 'background-color'
	});
	
	donateButtonEffect.start.pass(['#fffe50', '#FCF9F7'],donateButtonEffect).delay(15000); 
	
});


function resizeCurrentBox(width, height) {
	try{
		window.currentBox.resizeTo(width,height);
	} catch(e) {
	}
}
