window.addEvent('domready', function(){
		 
	var pleahs = $$("#pleah .acContent");
	var pleahFx = new Fx.Elements(pleahs, {wait: false, duration: 500});
	 
	var moveAmount = 157, interval = 117;
	pleahs.each(function(pleah, i) {
		pleah.setStyle("right", i * interval);
		pleah.addEvent("mouseover", function(event) {
			pleah.setStyle('background-image','url(images/drawer-active.gif)');
			var o = {};
			var l = pleah.getStyle("right").toInt()
			o[i] = {right: [l, i * interval]}
			pleahs.each(function(other, j) {
				var l2 = other.getStyle("right").toInt();
				if(i > j) {
					o[j] = {right: [l2, j * interval]};
				}
				if(i < j) {
					o[j] = {right: [l2, (j * interval) + moveAmount]};
				}
			});
			pleahFx.start(o);
		});
		pleah.addEvent("mouseout", function(event) {
			pleah.setStyle('background-image','url(images/drawer.gif)');
			var o = {};
			var l = pleah.getStyle("right").toInt()
			o[i] = {right: [l, i * interval]}
			pleahs.each(function(other, j) {
				var l2 = other.getStyle("right").toInt();
				o[j] = {right: [l2, j * interval]};
			});
			pleahFx.start(o);			
		});
	});
	
						var so = new SWFObject("Flash/trophey_movie2.swf", "main", "267", "166", "8", "");
						so.addParam("scale","noscale");
						so.addParam("menu","false");
						so.write("flashcontent");
						
});
