window.addEvent('domready',function(){
	var enters = $$('.refouterbox');
	var kwick = {};
	var fx = {};
	enters.each(function(enter, i){
		var kwick = enter.getElement('.refinnerbox');
		var fx = new Fx.Style(kwick, 'top', {wait: false, duration: 300, transition: Fx.Transitions.quadOut});
		enter.addEvent('mouseenter', function(e){
			var top = kwick.getStyle('top').toInt();
			fx.start(top,0);
		});
		enter.addEvent('mouseleave', function(e){
			var top = kwick.getStyle('top').toInt();
			fx.start(top,150);
		});
	});
});