window.addEvent('domready', function()
{
	$$('#logo').addEvent('mouseenter', function()
	{
		this.set('tween', {duration: 'short'});
		this.tween('margin-top', '5');
		this.addEvent('mouseleave', function()
		{
			this.tween('margin-top', '12');
		});
	});
	
	if(Browser.Plugins.Flash.version < 9)
	{
		$$('div.slideshow').dispose();
	}
});
