window.addEvent('domready', function()
{
	var list=$$('#partygamesposition');
	list.each(function(element)
	{
		var fx=new Fx.Styles(element, {duration:200, wait:false});
		element.addEvent('mouseenter', function()
		{
			fx.start({
			'width':166,
			'top':0,
			'height':37
			});
		});
		element.addEvent('mouseleave', function()
		{
			fx.start({		
			'width':166,
			'top':-62,
			'height':37
		});
	});
});				
}); 