window.addEvent('domready', function()
{
	$$('.passive').each(function(e)
	{
		e.addEvent('mouseenter', function()
		{
			var firstDiv = e.getElement('div');
			firstDiv.morph({'background-color': '#369'});
			var firstLink = e.getElement('a');
			firstLink.morph({'color': '#369'});
		});
		e.addEvent('mouseleave', function()
		{
			var firstDiv = e.getElement('div');
			firstDiv.morph({'background-color': '#9bb6d2'});
			var firstLink = e.getElement('a');
			firstLink.morph({'color': '#9bb6d2'});
		});
		e.addEvent('click', function()
		{
			var firstClick = e.getElement('a');
			window.open(firstClick.getAttribute('href'), '_self');
		});
	});
});