$(document).ready(function(){		

  /* Fonction pour fermer la thickbox */
	$("#close").bind("click",function(){
			self.parent.tb_remove();
		});

	/* Comportement Rollover avec class="rollover" */
	attachRollOverEvent("img.rollover");
	attachActif("img.actif");
	
});

  /* Comportement Rollover avec class="rollover" */
  attachRollOverEvent = function(imageId){
  	$(imageId).mouseover( function(){ $(this).attr("src", $(this).attr("src").replace('.','_roll.')) } );
  	$(imageId).mouseout( function(){ $(this).attr("src", $(this).attr("src").replace('_roll','')) } );
  }


/* Change image pour les "actif" */
attachActif = function(imageId){
	$(imageId).attr("src", $(imageId).attr("src").replace('.','_actif.'));
}

