window.addEvent('domready', function() {
/*
   	$('portfoliohover1').fade(0);
    $('portfoliohover1').style.display='block';
	$('portfolio1').addEvent('mouseover', function(e) {
		e.stop();
	   	$('portfoliohover1').fade(.7);
	});
	$('portfolio1').addEvent('mouseout', function(e) {
		e.stop();
	   	$('portfoliohover1').fade(0);
	});

   	$('portfoliohover2').fade(0);
    $('portfoliohover2').style.display='block';
	$('portfolio2').addEvent('mouseover', function(e) {
		e.stop();
	   	$('portfoliohover2').fade(.7);
	});
	$('portfolio2').addEvent('mouseout', function(e) {
		e.stop();
	   	$('portfoliohover2').fade(0);
	});

   	$('portfoliohover3').fade(0);
    $('portfoliohover3').style.display='block';
	$('portfolio3').addEvent('mouseover', function(e) {
		e.stop();
	   	$('portfoliohover3').fade(.7);
	});
	$('portfolio3').addEvent('mouseout', function(e) {
		e.stop();
	   	$('portfoliohover3').fade(0);
	});
*/
    $('thanks').fade(0);
    window.setTimeout(function(){
        $('thanks').style.display='block';
    },500);

    $('header').style.display='none';
    $('body').style.display='none';
    $('footer').style.display='none';
    $('header').fade(0);
    $('body').fade(0);
    $('footer').fade(0);
    window.setTimeout(function(){
      $('header').style.display='block';
      $('body').style.display='block';
      $('footer').style.display='block';
      $('header').fade(1);
      $('body').fade(1);
      $('footer').fade(1);
    },500);

    var faders = ['logo','slogan','tophead1','tophead2','tophead3','clientimage','clientinfo','latestnews','seotext1','seotext2','seotext3','seotext4','seotext5','seotext6'];

    window.setTimeout(function(){
      for(ids in faders){
          id=faders[ids];
          if($(id)){
              $(id).fade(0);
              randoyam=Math.floor(Math.random()*1000);
              window.setTimeout("$('"+id+"').style.display='block'; $('"+id+"').fade(1);",randoyam);
          }
      }
    },1000);

    var faders2 = ['contentt','contact'];
    window.setTimeout(function(){
      for(ids in faders2){
          id=faders2[ids];
          if($(id)){
              $(id).fade(0);
              window.setTimeout("$('"+id+"').style.display='block'; $('"+id+"').fade(1);",500*ids);
          }
      }
    },2000);

/*
    var faders3 = ['portfolio1','portfolio2','portfolio3'];
    window.setTimeout(function(){
      for(ids in faders3){
          id=faders3[ids];
          if($(id)){
              $(id).fade(0);
              window.setTimeout("$('"+id+"').style.display='block'; $('"+id+"').fade(1);",500*ids);
          }
      }
    },3000);
*/


	// add click action for $('contactgo')
		// if email is filled out then allow mail
			// submit to action.php
			// show thank you
		// else
			// show error

    $('contactgo').addEvent('click', function(event){
        event.stop();
		if($('email').value!=""){
	        var req = new Request({
	            method: 'get',
	            url: 'action.php',
	            data: {'name':$('name').value, 'email':$('email').value, 'extra':$('extra').value},
	            onRequest: function() {$('loading').style.visibility='visible';},
	            onComplete: function(response){ $('loading').style.visibility='hidden'; $('thanks').fade(1); window.setTimeout(function(){$('thanks').fade(0); $('name').value=''; $('email').value=''; $('extra').value=''; },3000);}
	        }).send();
		}
		else{

		}
    });

    function cleanup(){
        $('name').value='';
        $('email').value='';
        $('extra').value='';
        $('loading').style.visibility='hidden';
        $('thanks').fade(1);
        window.setTimeout(function(){
            $('thanks').fade(0);
        },1000);
    }
});