var splash={
  initialize:function(){
    if(!Cookie.read('splash')){
      $('wrapper').set('tween',{duration:2500});
      $('wrapper').tween('opacity',[0,1]);
      Cookie.write('splash','true',{duration:0})}
    else $('wrapper').set('opacity',1);
    /*if($('splash')){
      if(Cookie.read('splash'))$('splash').dispose();
      else{
        $$('#splash a')[0].addEvent('click',function(e){
          e.stop();
          Cookie.write('splash','true',{
            duration:0});
          this.set('morph',{
            duration:'long',
            transition:'sine:in:out',
            onComplete:function(){
              $('splash').dispose()}});
          this.morph({right:750,bottom:410})})}}*/}}
window.addEvent('domready',splash.initialize.bind(splash));

