jQuery.noConflict();
jQuery(document).ready(	function(){
	//Centering divs...
/*	
	bwidth = jQuery("body").width();
	pwidth = jQuery("div#contener").width();	
	left = (bwidth - pwidth)/2;	
	jQuery("div#contener").css("position", "absolute");
	jQuery("div#contener").css("left", left);
	*/
	//Simulating links for the <span> tags in the accordeon titles
	jQuery("div#liste-parcs h4 span").hover(
	function()
	{
		jQuery(this).css("text-decoration", "underline");
	}, 
	function()
	{
		jQuery(this).css("text-decoration", "none");
	});	
});