newPathName = 'http://www.kratingdaeng.co.id';

$(document).ready(function(){

		//create bubble popups for each element with class "button"
		$('.tooltipbubble, .tooltipbubble2, .tooltipbubble3, .tooltipbubble4').CreateBubblePopup();
	
		//set customized mouseover event for each button
		$('.tooltipbubble').mouseover(function(){
	
			//show the bubble popup with new options
			$(this).ShowBubblePopup({
										innerHtml: 'Join our Facebook Fanpage',
										innerHtmlStyle: {
															color: ($(this).attr('id')!='azure' ? '#76d2f0' : '#192f91'), 
															'text-align':'center'
														},										
										themeName: 	$(this).attr('id'),
										themePath: 	newPathName + '/templates/default/images/jquerybubblepopup-theme'								 
								  });
		});
		$('.tooltipbubble2').mouseover(function(){
	
			//show the bubble popup with new options
			$(this).ShowBubblePopup({
										innerHtml: 'Follow our Twitter',
										innerHtmlStyle: {
															color: ($(this).attr('id')!='azure' ? '#76d2f0' : '#192f91'), 
															'text-align':'center'
														},										
										themeName: 	$(this).attr('id'),
										themePath: 	newPathName + '/templates/default/images/jquerybubblepopup-theme'								 
								  });
		});
		$('.tooltipbubble3').mouseover(function(){
	
			//show the bubble popup with new options
			$(this).ShowBubblePopup({
										innerHtml: 'View our TVC on Youtube',
										innerHtmlStyle: {
															color: ($(this).attr('id')!='azure' ? '#76d2f0' : '#192f91'), 
															'text-align':'center'
														},										
										themeName: 	$(this).attr('id'),
										themePath: 	newPathName + '/templates/default/images/jquerybubblepopup-theme'								 
								  });
		});
		$('.tooltipbubble4').mouseover(function(){
	
			//show the bubble popup with new options
			$(this).ShowBubblePopup({
										innerHtml: 'Subscribe to our RSS',
										innerHtmlStyle: {
															color: ($(this).attr('id')!='azure' ? '#76d2f0' : '#192f91'), 
															'text-align':'center'
														},										
										themeName: 	$(this).attr('id'),
										themePath: 	newPathName + '/templates/default/images/jquerybubblepopup-theme'								 
								  });
		});
		
});
