
var hauteurTexte;

window.addEvent('domready',function(){
  if ($chk($('contact'))){ 
    $('contact').addEvent('submit',function(){
      return checkForm();    
    });
  }    
});

function design()
{
  hauteurDiapo = $(window).getSize().y-$('header').getSize().y-$('footer').getSize().y;
  if(parseInt(hauteurDiapo)<600)
  {
    if($chk($('contenu')))
    {
      $('contenu').setStyle('position','absolute');
      $('contenu').setStyle('top',(600-$('contenu').getSize().y)/2+'px');
    }
  }
  else
  {
    if($chk($('contenu')))
    {
      $('contenu').setStyle('position','absolute');
      $('contenu').setStyle('top',(hauteurDiapo-$('contenu').getSize().y)/2+'px');
    }
  }
  
}

window.addEvent('load',function(){
  design();
  if ($chk($('map'))){
    initialize();
  }
  if($chk($('box1')))
  {
    //animation du fond de la page d'accueil
      nS1 = new noobSlide({
			box: $('box1'),
			items: $('box1').getChildren('span'),
			size: 1000,
			autoPlay: true
	});   
  }
});
