// JavaScript Document

	Event.observe(window, 'load', function()
	{		
		var products = document.getElementsByClassName('type');
		$A(products).each(function(product)
		{
			Event.observe(product, 'click', function(event)
			{
				window.location = product.getElementsByTagName('a')[0].getAttribute('href');
			});
		});
	});
