window.addEvent('domready', function()
{
	function hideCats(ael)
	{
		$$('div#products div.cat').each(function(el)
		{
			if (el != this)
				el.get('tween', {property: 'opacity', duration: 'short'}).start(0.2);
		}.bind(ael));
	}

	function showCats()
	{
		$$('div#products div.cat').each(function(el)
		{
			el.get('tween', {property: 'opacity', duration: 100}).start(1);
		});
	}

	if ($('products'))
	{
		$$('div#products div.cat').each(function(el)
		{
			el.addEvent('mouseover', function() { hideCats(this); }.bind(el));
			el.addEvent('mouseout', showCats);
		});
	}
	
	if ($('home'))
	{
		var time = 0;
		$$('#home .quicklinks img').each(function(el)
		{
			el.fade('hide');
			window.setTimeout(function(el) { this.get('tween', {property: 'opacity', duration: 800}).start(1); }.bind(el), time);
			time = time+300;
		});
	}
});
