// SLIDER
jQuery(window).bind("load", function() {
		jQuery("div#slider1").codaSlider()
		// jQuery("div#slider2").codaSlider()
		// etc, etc. Beware of cross-linking difficulties if using multiple sliders on one page.
});
		
// MENU ACCORDEON pour ie6
$(document).ready(function(){
		$('li.headlink').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); });
	});
