
	window.addEvent( 'domready', function() {
		var status = {
			'true': 'open',
			'false': 'close'
		};
		
		$('siteRecherche').addEvents({
    		'blur': function(){
       			if ( this.value == '' ) this.value = 'Recherche ...';
    		},
    		'click': function(){
     			if ( this.value == 'Recherche ...' ) this.value = '';
    		}
		});
		
		$('siteIdentifiant').addEvents({
    		'blur': function(){
       			if ( this.value == '' ) this.value = 'Identifiant ...';
    		},
    		'click': function(){
     			if ( this.value == 'Identifiant ...' ) this.value = '';
    		}
		});
		
		
		var myVerticalSlide = new Fx.Slide('vertical_slide');
		$('v_toggle').addEvent('click', function(e){
			e.stop();
			myVerticalSlide.toggle();
		});
		var myVerticalVolet = new Fx.Slide('volet2');

		$('v_toggle').addEvent('click', function(e){
			e.stop();
			myVerticalVolet.toggle();
		});
	});
	var tab_image = new Array(2);
	for (var i=0; i< tab_image.length;i++)
	tab_image[i]= new Image();
	tab_image[0].src= '/commun/images/bt_cab_on.jpg';
	tab_image[1].src='/commun/images/bt_cab_off.jpg';

	var n=0;

	function change( p ) {
		n= ++n;
		if (n == tab_image.length) n=0;
		window.document.image.src=tab_image[n].src;
		if( p != "" ) window.location.replace( 'index.php?p=' + p );
	}


