$(document).ready(
	function() {
		
		// LightBox
		try {
			$('a[rel*=lightbox]').colorbox() ;
			$('a[class*=lightbox]').colorbox() ;
		}catch( e ) {}
		
		// La colorbox
		try {
			$('.colorbox').colorbox() ;
		}catch( e ) {}
		
		// L'agenda
		try {
			agenda() ;
		}catch( e ) {}
		
		// pngFix
		try {
			var Nom = navigator.appName;
			if(Nom == 'Microsoft Internet Explorer') {
				DD_belatedPNG.fix('#page');
				DD_belatedPNG.fix('#tete');
				DD_belatedPNG.fix('#logo');
				DD_belatedPNG.fix('#video');
				DD_belatedPNG.fix('#ma_classe img');
				DD_belatedPNG.fix('#pied');
				DD_belatedPNG.fix('#contenu-gauche h1 img');
			}
		}catch( e ) {}
		
		// Le champ de recherche
		/*try {
			var text_recherche = 'Recherche...' ;
			$('#recherche-text').val( text_recherche ) ;
			$('#recherche-text').focus(
					function() {
						if( $(this).val() == text_recherche )
							$(this).val('') ;
					}
			);
			$('#recherche-text').blur(
					function() {
						if( $(this).val() == '')
							$(this).val( text_recherche ) ;
					}
			);
		}catch( e ) {}*/
	}
) ;
