$j=jQuery.noConflict();	
function makethechart($) {
	//		Transforme les résultats du sondage en camembert et rajoute la couleur à la légende
	
	var piecolors = ["#6AC5E4","#EFF4CC","#35728D","#F9EF76","#0D2C3A"];
	var tableofvalues = new Array;
	i = 0;
	$j('#poll span.value').each(function(){
		tableofvalues.push($j(this).html());
	})
	$j('#poll span.title').each(function(i){										
		$j(this).prepend("<img alt=" + $j(this).html() + " src='../images/deco/poll-legende.gif'/>");
		$j(this).find('img').css('background-color', piecolors[i]);
	})
	
	$j('#graphpoll').sparkline(tableofvalues, {type: 'pie', sliceColors: piecolors, width: '160px', height: '160px'} );
};
//jQuery(document).ready(function($) {
//	$j("#header ul li:contains('Home')").css('width','68px');
//	$j("#header ul li:contains('About')").css('width','68px');
//	$j("#header ul li:contains('Team')").css('width','68px');
//	$j("#header ul li:contains('Programs')").css('width','98px');
//	$j("#header ul li:contains('Facilities')").css('width','83px');
//	$j("#header ul li:contains('Media')").css('width','68px');
//	$j("#header ul li:contains('News & Events')").css('width','123px');
//	$j("#header ul li:contains('Contact')").css('width','83px');
//	$j("#sidebar h2").wrapInner('<span></span>');

	
//});

