// source --> https://www.hymercenter.fi/wp-content/themes/suunta/js/trunk.js?ver=6.9.4 
jQuery(document).ready(function() {
	
	jQuery('.panorama-button').click(function() {
		
		var bublr = jQuery(this).attr('data-bubl');		
		jQuery("#frame-three-sixty").html('<span style="position:relative;top:50%;text-align:center;display:block;">Ladataan...</span>');	
		// The ajax 
		jQuery.post(
			the_ajax_script.ajaxurl, 
				{ 
				'action': 'the_references_hook',				
				'data': bublr
				}, 
				function(response_from_the_action_function){
					jQuery("#frame-three-sixty").html(response_from_the_action_function);
		});   
		if ( !jQuery("#frame-three-sixty").hasClass('active') ) {			
			jQuery("#frame-three-sixty").addClass('active');
			jQuery(".panorama-close").addClass('active');
			jQuery('.lSSlideOuter').hide();
		}
		

	});
	
	jQuery('.panorama-close').click(function() {
		if ( jQuery(this).hasClass('active') ) {
			jQuery(this).removeClass('active');
			jQuery("#frame-three-sixty").removeClass('active');
			jQuery('.lSSlideOuter').show();
		}
	});			



});