function tooltipr_matte_max_themes(id_name, options)
{
	options = jQuery.extend(
	{
		body_css: {
		'color': '#00ffcf',
		'font-family': '"Myriad Pro", "Helvetica Neue", Helvetica, Arial, sans-serif',
		'text-shadow': 'rgba(0,255,215,0.2) 0px 0px 3px',

		'font-size': '10px',
		'font-style': 'normal',
		'text-decoration': 'none',
		'font-weight': 'bold',
		'font-variant': 'small-caps',
		'text-transform': 'uppercase',
		'padding': '3px 5px 0px 5px'
	},
	
	bgGrad: [
		{ colorStop: 0, color: '#333333' },
		{ colorStop: 1, color: '#0f0f0f' },
	],
	
	strokeFallback: 'black',
	strokeGrad: [
		{ colorStop: 0, color: 'rgba(0,0,0,0)' },
		{ colorStop: 1, color: 'rgba(0,0,0,0)' }	
	],
	
	strokeWidth: 0,

	tuning: {
	  north: { top: -10, left: 0 },
	  south: { top: 3, left: 0 },
	  center: { top: 0, left: 0 },
	  west: { top: 0, left: -10 },
	  east: { top: 0, left: 10 }
	 }
		
	}, options);
	
	return new tooltipr_matte(id_name, options);
}
