Event.add(window, 'load', function()
{
	if (I('top_collectors_sellers')) 
	{
		$('#top_collectors_sellers .collections, #top_collectors_hunters .collections').each(function(collection)
		{
			var a = collection.byTag('a')[0], div = collection.byTag('div')[0];
			
			div.blindInit(true).styles({
				display: 'block'
			});
			
			a.addEvent('click', function(e)
			{
				if (div.styles('height').toInt() > 0) 
				{
					div.blindUp({
						effect: Effects.outBounce
					});
				}
				else 
				{
					div.blindDown({
						effect: Effects.outElastic,
						time: 1.3
					});
				}
				
				return e.stop();
			});
		});
	}
});
