window.addEvent('domready', function()
{
	new SmoothScroll({duration:1500});
	var gototop = $('gototop');

	$('facebook').addEvents(
	{
    	mouseenter: function()
    	{
    		this.morph(
    		{
      			'top': '105px',
      			'height': '35px'
    		});
    	},

    	mouseleave: function()
    	{
    		this.morph(
    		{
      			'top': '115px',
      			'height': '25px'
    		});
    	}
  	});

  	$('tweety').addEvents(
	{
    	mouseenter: function()
    	{
    		this.morph(
    		{
      			'top': '105px',
      			'height': '35px'
    		});
    	},

    	mouseleave: function()
    	{
    		this.morph(
    		{
      			'top': '115px',
      			'height': '25px'
    		});
    	}
  	});
});


window.addEvent('domready',function() {
  $each($$('.mainmenu li'), function(el) {
  	var original = el.getStyle('background-color');
    var morph = new Fx.Morph(el,{ 'duration':'300', link:'cancel' });
    el.addEvents({
      'mouseenter' : function() { morph.start({ 'background-color':'#BDBDBD' }) },
      'mouseleave' : function() { morph.start({ 'background-color': original }) }
    });
  });
});
