function set_popup() {
												
	$('.popup_is_here').CreateBubblePopup();

	//set customized mouseover event for each button
	$('.popup_is_here').mouseover(function(){

		//show the bubble popup with new options
		$(this).ShowBubblePopup({ innerHtml: $(this).attr('alt'),
												themePath: 	'http://autoars.ru/images/web/jquerybubblepopup-theme',
												themeName :  'orange',
												themeMargins:   { total: '20px', difference: '2px'},
												width: '250px'});
	});
}
