/**
 * @author arons
 */
Window.onDomReady(function() {
	
	$S('.showpl').action({
	   mouseoverevent: function(){
	       this.addClass('over');
	},
	   mouseoutevent: function(){
	       this.removeClass('over');
	   }
	})		

	$S('.item').each(function(div) {
		var d = div.getElement('.playlist');
		if (d){
			var fx = new Fx.Height(d).set(0);
			$(div.getElement('.showpl')).addEvent('click', function() {
				fx.toggle();
			}); 	
		}
	});	
	
	var img = $('reggae.co.uk');
	src = "img/promo/ad-for-reggaenews.jpg";
	round = Math.round(Math.random());
	if (round == 1) {
		img.src = src;
	}
});

