

function changeStoryTabClouds(tabnameClouds) {
	document.getElementById("storytabClouds1").style.display = 'none';
	document.getElementById("link_storytabClouds1").style.background = '#0e3782';
	document.getElementById("link_storytabClouds1").style.color = '#fff';
	document.getElementById("link_storytabClouds1").style.borderBottom = '1px solid #7373bb';
	document.getElementById("link_storytabClouds1").style.paddingBottom = '0';

	document.getElementById('storytabClouds2').style.display = 'none';
	document.getElementById("link_storytabClouds2").style.background = '#0e3782';
	document.getElementById("link_storytabClouds2").style.color = '#fff';
	document.getElementById("link_storytabClouds2").style.borderBottom = '1px solid #7373bb';
	document.getElementById("link_storytabClouds2").style.paddingBottom = '0';


	document.getElementById(tabnameClouds).style.display = 'block';
	document.getElementById("link_"+tabnameClouds).style.background = '#f9fafc';
	document.getElementById("link_"+tabnameClouds).style.color = '#000000';
	document.getElementById("link_"+tabnameClouds).style.borderBottom = '1px solid #f9fafc';
	document.getElementById("link_"+tabnameClouds).style.paddingBottom = '0px';
	}
	

