jQuery(document).ready(function(){
	jQuery('.bubble').CreateBubblePopup();
	jQuery('.bubble').mouseover(function(){
	var title = jQuery(this).attr("message");
	var button = jQuery(this);
	button.ShowBubblePopup({
			position : 'right',
			align	 : 'center',
			innerHtml: title,
			innerHtmlStyle: {
				color:'#ffffff', 
				'text-align':'center'
			},								
			themeName: 	'all-black',
			themePath: 	'http://tutorialmode.com/structure/images/bubble/jquerybubblepopup-theme'								 
		});
	});
	jQuery('.bubbleB').CreateBubblePopup();
	jQuery('.bubbleB').mouseover(function(){
	var title = jQuery(this).attr("message");
	var button = jQuery(this);
	button.ShowBubblePopup({
			position : 'bottom',
			align	 : 'center',
			innerHtml: title,
			innerHtmlStyle: {
				color:'#ffffff', 
				'text-align':'center'
			},								
			themeName: 	'all-black',
			themePath: 	'http://tutorialmode.com/structure/images/bubble/jquerybubblepopup-theme'								 
		});
	});
	jQuery('.bubbleL').CreateBubblePopup();
	jQuery('.bubbleL').mouseover(function(){
	var title = jQuery(this).attr("message");
	var button = jQuery(this);
	button.ShowBubblePopup({
			position : 'left',
			align	 : 'center',
			innerHtml: title,
			innerHtmlStyle: {
				color:'#ffffff', 
				'text-align':'center'
			},								
			themeName: 	'all-black',
			themePath: 	'http://tutorialmode.com/structure/images/bubble/jquerybubblepopup-theme'								 
		});
	});
});

