function Splash_Slabs() {
	if($('slabs')){
		var slabs = $$('.slab');
	
		var delayer = 150;
		slabs.each(function(slab, i) {
			
			slab.$tmp.slabFX = new Fx.Styles(slab, {
				wait: false,
				duration: 450,
				transition: Fx.Transitions.quartOut
			}).set({
				'height':0,
				'margin-top':117
			});
			
			slab.$tmp.transitionIn = function(){
				slab.$tmp.slabFX.start({
					'height': 97,
					'margin-top': 20
				});			
			}
			
			slab.$tmp.transitionIn.delay(delayer);
			delayer += 150;
	
			
			slab.$tmp.slideLink = slab.getElement('a.slide');
			
	        slab.addEvent("mouseenter", function(event) {
				this.$tmp.slabFX.start({
					'height': 97,
					'margin-top': 0
				});
				this.$tmp.slideLink.setStyle('border-color',"#ffffff");			
	        });
	        slab.addEvent("mouseleave", function(event) {
				this.$tmp.slabFX.start({
					'height': 97,
					'margin-top': 20
				});			
				this.$tmp.slideLink.setStyle('border-color',"#616161");
	        });
			
	        
	        //clicking on a Featured Ringtone, but to the right of the image (see also aslide.click)
			slab.addEvent('click', function(event) {
				event = new Event(event).stop();				
				splashUI.splashPopup.showPopup(this.$tmp.slideLink.href);	
			});
	
		});	
	}
}