<!--
/* $(document).ready(function(){

//create a bubble popup for each DOM element with class attribute as "text", "button" or "link" and LI, P, IMG elements.
$('#friends1, #friends2').CreateBubblePopup({
	position : 'bottom',
	align	 : 'center',
	innerHtml: '{$member_friends[mf].nickname}',
	innerHtmlStyle: {
		color:'#000', 
		'text-align':'center'},								
	themeName: 	'grey',
	themePath: 	'http://img.bstat.eu/templates/jquerybubblepopup-theme'
});
$('#follows1, #follows2').CreateBubblePopup({
	position : 'bottom',
	align	 : 'center',
	innerHtml: '{$member_friends_follows[mff].nickname}',
	innerHtmlStyle: {
		color:'#000', 
		'text-align':'center'},								
	themeName: 	'grey',
	themePath: 	'http://img.bstat.eu/templates/jquerybubblepopup-theme'
});

}); */

function survol(idimage, nickname)
{
	 $('#'+idimage).CreateBubblePopup({
		position : 'bottom',
		align	 : 'center',
		innerHtml: nickname,
		innerHtmlStyle: {
			'color':'#449FEB', 
			'font-weight':'bold', 
			'text-align':'center'},								
		themeName: 	'grey',
		themePath: 	'http://img.bstat.eu/templates/jquerybubblepopup-theme'
	});
}
//-->
