jQuery(document).ready(function() {
	jQuery("li.guida a").addClass("selected");

	jQuery('.series-info').each(function (i) {
		var desc = '#' + jQuery(this).attr('id') + '-detail';
		var obj = jQuery(desc);
		jQuery(this).bt(obj.html(),{								
		  positions: ['right', 'left'],
			offsetParent: jQuery('#bd'),
		  fill: '#1a1a1a',
		  strokeStyle: '#999', 
		  spikeLength: 20,
		  spikeGirth: 10,
		  width: 350,
		  overlap: 0,
		  centerPointY: 1,
		  cornerRadius: 0, 
		  cssStyles: {
		    fontSize: '12px',
		    padding: '10px 14px',
				'background-color': '#1a1a1a'
		  },
		  shadow: true,
		  shadowColor: 'rgba(100,100,100,.5)',
		  shadowBlur: 8,
		  shadowOffsetX: 4,
		  shadowOffsetY: 4
		});

	});
});