Event.observe(window, 'load', function() {
	// footer satori logo
	$$('#f0')[0].observe('mouseover', function() {
		$$('#f1 a')[0].setStyle({ color: '#DD2424' });
	});
	
	$$('#f0')[0].observe('mouseout', function() {
		$$('#f1 a')[0].setStyle({ color: '#548CD8' });
	});
	
	$$('#f1 a')[0].observe('mouseover', function() {
		$$('#f1 a')[0].setStyle({ color: '#DD2424' });
	});
	
	$$('#f1 a')[0].observe('mouseout', function() {
		$$('#f1 a')[0].setStyle({ color: '#548CD8' });
	});
	




});