var tgcb = {
  src: './swf/tgcb.swf'
};

sIFR.activate(tgcb); // From revision 209 and onwards

sIFR.replace(tgcb, {
	selector: 'span',
	wmode: 'transparent',
	css: [
      '.sIFR-root { text-align: center; font-size:11px }'
      ,'a { text-decoration: none; }'
      ,'a:link { color: #ffffff; }'
      ,'a:hover { color: #ffffff; }'
    ]
	
});


if (!window.XMLHttpRequest) {
	Event.observe(window, 'load', function() {
		$$('li').each( function(e) {
			Event.observe(e, 'mouseover', function() {
				Element.addClassName(e, 'hover');
			});
			Event.observe(e, 'mouseout', function() {
				Element.removeClassName(e, 'hover');
			});
		});
	});
}