function change_panorama(file, title){
	var flashvars = false;
	
	var params = {
		menu: 'false',
		wmode: 'transparent',
		allowfullscreen: 'true'
	};
	
	var attributes = {
		id: 'panorama'
	};
	
	swfobject.embedSWF(file, 'panorama', '566', '360', '9.0.0','', flashvars, params, attributes);
	document.getElementById('panorama_title').innerHTML = title;
}


function change_image(file, title){
	var image = document.getElementById('big_image');
	var image_title = document.getElementById('image_title');
	
	image.src = file;
	image_title.innerHTML = title;
	
}
