// ************************************************************** //
// * Au dela de l'Oraison                                       * //
// ************************************************************** //
// * Copyright (c) 2007-2008                                    * //
// * Web           http://www.samantha-bailly.com               * //
// ************************************************************** //
// ************************************************************** //
// * $ Date: 2007-10-06 19:50:46 +0200 (Sat, 06 Oct 2007)     $ * //
// * $ Developper: Dietrich Christophe                        $ * //
// * $ Developper: DESPORTES Florian                          $ * //
// ************************************************************** //
// ************************************************************** //
// * $ Source: script_liens.js                                $ * //
// * $ Source type: javascript with mootools framework        $ * //
// * $ Works with: includes/liens.inc.php                     $ * //
// ************************************************************** //


window.addEvent('domready', function() {

	$$("div.lien").each( function(item) {
		item.slide("hide");
	});
	
	for( var i=1 ; i<=$$("h3.lien").length ; i++ ) {
		$("lien_"+ i).addEvent("click", function(evt) {
			evt.preventDefault();
			var id = evt.target.id.substr(evt.target.id.lastIndexOf("_")+1, evt.target.id.length - evt.target.id.lastIndexOf("_"));
			$("rep_"+ id).slide("toggle");
			for( var j=1 ; j<=$$("h3.lien").length ; j++ ) {
				if( j != id ) {
					$("rep_"+ j).slide("out");
				}
			}
			return false;
		});
	}
	
	$$("input").each( function(item) {
		item.addEvent("focus", function() { this.select(); });
	});
});
