window.addEvent('domready', function(){ 

	$$('div.showbox').addEvents({
		mouseenter: function(){
			this.morph({
				'padding-top': '5px'
			});
		},
		mouseleave: function(){
			this.morph({
				'padding-top': '0px'
			});
		}
	});




}); 