/*-----------------------------------------------------------------------------------------------*/
//
// Copyright (c) 2009 Agence Clark (http://www.agence-clark.com)
//
/*-----------------------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------------------*/
// Init Page
/*-----------------------------------------------------------------------------------------------*/
Event.observe(window, 'load', InitPage, false);
function InitPage(){
	//-- Rollover Input Image --//
	RollOverImage();
	if ($('pied')) rollBlocPied();
}

/*-----------------------------------------------------------------------------------------------*/
// Fonctions
/*-----------------------------------------------------------------------------------------------*/
 var rollBlocPied = function(){
  $$('#pied .bloc').each(function(e,i) {
     Event.observe(e, 'mouseover', function() {   
          e.setStyle({ backgroundColor : '#fff'}); 
     }); 
     Event.observe(e, 'mouseout', function() {   
          e.setStyle({ backgroundColor : '#c5dae7'}); 
     });       
  }); 
 };
