window.addEvent('domready', function() {
  if ($('box2')){$('box2').setStyle('width','832px');}
  if ($('box7')){$('box7').setStyles({
	margin:'0 auto',
	width:'1010px'
  });}
  
  if ($$('.solution_minia'))
  {
	  $$('.solution_minia').each(function(i){
		  $(i).addClass("png");
	  })
  }

  if ($$('.visuel_produit'))
  {
	  $$('.visuel_produit').each(function(i){
		  $(i).getElements('img').addClass("png");
	  })
  }

  if ($$('.pathway'))
  {
	  $$('.pathway').each(function(i){
		  $(i).getElements('img').addClass("png");
	  })
  }

  if ($$('.FBConnectButton_Simple'))
  {
	  $$('.FBConnectButton_Simple').each(function(i){
		  $(i).getElement('span').setStyle('text-decoration','underline');
	  })
  }

  if ($$('.menu'))
  {
	  $$('.menu').each(function(i){
		  if($(i).getElements('li').getLast()){
			  $(i).getElements('li').getLast().addClass("last");
		  }
	  })
  }

  //NewsLetter
  new FormCheck('formNewsLetter');
  if ($('emailNS'))
  {
  	$('emailNS').addEvent('focus', function(){
	    if ($('emailNS').getProperty('value') == 'Votre e-mail')
	    {
	      $('emailNS').setProperty('value', '');
	    }
	  });
  }

  /*if ($E('.thumbs'))
  {
  	$E('.thumbs').getElements('div').each(function(myspan, ind){
		myspan.addEvent('mouseover', function(){
			$E('.item'+(ind+2)+' a span').setStyle('font-weight', 'bold');
		});
		myspan.addEvent('mouseleave', function(){
			$E('.item'+(ind+2)+' a span').setStyle('font-weight', 'normal');
		});
	});
  }*/
  
  // Infobulle
  if ($E('.infobulle'))
  {
  	var infoBulle		= $('infobulle');
  	var previousElem	= $('infobulle').getPrevious();
	var previousElemX	= '709px';
  	var previousElemY	= previousElem.getTop();
  	var contentRightY	= $('rightContent').getTop();

  	$E('.content').getElements('p').each(function(myp){
		if (myp.getText().trim() == '' && !myp.getChildren())
			myp.remove();
	});

  	$('rightContent').adopt('infobulle');

  	$('infobulle').setStyles({
	   top:		(previousElemY-contentRightY-20)+'px'
	});

	contentY		= $E('.content').getSize().size.y + $('infobulle').getSize().size.y;
	$E('.content').setStyle('height', contentY+'px');

  	//$('infobulle').remove();
  }

  if ($('ombre')){
	$('ombre').setStyle('display','block');
	if(!$('afficher')){
		$('ombre').setStyle('display','none');
	}
  }

  // Accordion Fix for IE6
  if (window.ie6 && $('content-pane'))
  {
	function setAccordHeight(elem)
	{
		if (elem.getNext().getSize().size.y > 0)
  			elem.getNext().setStyle('height', 'auto');
	}

	//setAccordHeight.pass($('info-nutri')).delay(400);
	$('info-nutri').fireEvent('click');

	$('info-nutri').addEvent('click', function(){
		setAccordHeight.pass($('info-nutri')).delay(400);
	});

	$('temps-cuisson').addEvent('click', function(){
		setAccordHeight.pass($('temps-cuisson')).delay(400);
	});

	$('comment-ca-marche').addEvent('click', function(){
		setAccordHeight.pass($('comment-ca-marche')).delay(400);
	});
  }

  // Remove last newsletter Menuitem
  $E('#footer ul li.last').remove();
});
