//<![CDATA[
	var fade = { // Namespace
	ids	: {},
	step	: 0.3,
	delay	: 1, // ms
	timer	: null,
	setOpacity : function(elem, nOpacity) {
		if (typeof elem == 'string') elem = document.getElementById(elem);
		var props = ['MozOpacity', 'KhtmlOpacity', 'opacity'];
		for (var i in props) {
			if (typeof elem.style[props[i]] == 'string') {
				elem.style[props[i]] = nOpacity;
				return;
			}
		}
		// IE 6+
		try {
			nOpacity = 100 * parseFloat(nOpacity);
			if ((oAlpha = elem.filters['DXImageTransform.Microsoft.alpha'] || elem.filters.alpha)) oAlpha.opacity = nOpacity;
			else elem.style.filter += "progid:DXImageTransform.Microsoft.Alpha(opacity="+nOpacity+");";
		} catch (e) {
			// IE <= 5.5 OR Opera < 9 OR another browser. Do nothing
		}
	},
	_out : function(id, from, to, callback) {
		from -= this.step;
		from = from <= to ? to : from;
		if (this.doit(id, from, to, callback)) 
			this.timer = setTimeout("fade._out('"+id+"', "+from+", "+to+", '"+(callback ? callback : '')+"')", this.delay);
	},
	_in : function(id, from, to, callback) {
		from += this.step;
		from = from >= to ? to : from;
		if (this.doit(id, from, to, callback)) 
			this.timer = setTimeout("fade._in('"+id+"', "+from+", "+to+", '"+(callback ? callback : '')+"')", this.delay);
	},
	doit : function(id, from, to, callback) {
		this.setOpacity(id, from);
		clearTimeout(this.timer);
		if (from == to) {
			if (callback) eval(callback+'()');
		} else return true;
	}
}
//]]>

function pop_hide() {
	pop_up.style.width = '1px';
	pop_up.style.height = '1px';
	window.document.flash.SetVariable("cloud_anim", "play");
}
function pop_in(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85);
}
function pop_out(){
	fade._out('pop_up', 0.85, 0, 'pop_hide');
}
function gallery_hide() {
	gallery.style.display = 'none';
	gallery.style.width = '1px';
	gallery.style.height = '1px';
	gallery.style.left = '0px';
	gallery.style.top = '0px';

	pop_out();
}

function gallery_in_1(){
	gallery.style.display = '';
	gallery.style.width = '100%';
	gallery.style.height = '760px';
	gallery.style.left = '0px';
	gallery.style.top = '50%';

	fade._in('gallery', 0, 1.0, 'loadHTML_1');
}
function gallery_in_2(){
	gallery.style.display = '';
	gallery.style.width = '100%';
	gallery.style.height = '760px';
	gallery.style.left = '0px';
	gallery.style.top = '50%';

	fade._in('gallery', 0, 1.0, 'loadHTML_2');
}
function gallery_in_3(){
	gallery.style.display = '';
	gallery.style.width = '100%';
	gallery.style.height = '760px';
	gallery.style.left = '0px';
	gallery.style.top = '50%';

	fade._in('gallery', 0, 1.0, 'loadHTML_3');
}
function gallery_in_4(){
	gallery.style.display = '';
	gallery.style.width = '100%';
	gallery.style.height = '760px';
	gallery.style.left = '0px';
	gallery.style.top = '50%';

	fade._in('gallery', 0, 1.0, 'loadHTML_4');
}
function gallery_in_5(){
	gallery.style.display = '';
	gallery.style.width = '100%';
	gallery.style.height = '760px';
	gallery.style.left = '0px';
	gallery.style.top = '50%';

	fade._in('gallery', 0, 1.0, 'loadHTML_5');
}
function gallery_out(){
	gallery.style.display = 'none';
	sert.style.display = 'none';
	loadHTML_close();
}

var request;
var dest;

function processStateChange(){
	if (request.readyState == 4){
		contentDiv = document.getElementById(dest);
		if (request.status == 200){
			response = request.responseText;
			contentDiv.innerHTML = response;
		}
	}
}

function loadHTML_1(URL, destination){
var URL = "gallery_load.php?gallery=1";
var destination = "gallery";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);

scroll_gallery(380);
  }
}
function loadHTML_2(URL, destination){
var URL = "gallery_load.php?gallery=2";
var destination = "gallery";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);

scroll_gallery(380);
  }
}
function loadHTML_3(URL, destination){
var URL = "gallery_load.php?gallery=3";
var destination = "gallery";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);

scroll_gallery(380);
  }
}
function loadHTML_4(URL, destination){
var URL = "gallery_load.php?gallery=4";
var destination = "gallery";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);

scroll_gallery(380);
  }
}
function loadHTML_5(URL, destination){
var URL = "gallery_load.php?gallery=5";
var destination = "gallery";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);

scroll_gallery(380);
  }
}
function loadHTML_close(URL, destination){
var URL = "gallery_close.php";
var destination = "gallery";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);

    loadHTML_close_2();
  }
}
function loadHTML_close_2(URL, destination){
var URL = "gallery_close.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);

fade._out('gallery', 1.0, 0, 'gallery_hide');
  }
}
function getBodyScrollTop() {
	return self.pageYOffset || (document.documentElement && document.documentElement.scrollTop) || (document.body && document.body.scrollTop);
}
function scroll_gallery(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT);} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT);} }, 1);
	}
}
function gallery_visible_1(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'gallery_in_1');
}
function gallery_visible_2(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'gallery_in_2');
}
function gallery_visible_3(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'gallery_in_3');
}
function gallery_visible_4(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'gallery_in_4');
}
function gallery_visible_5(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'gallery_in_5');
}
function gallery_close(){
	gallery_out();
}


function loadHTML_map(URL, destination){
var URL = "map_load.php";
var destination = "gallery";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);

scroll_gallery(380);
  }
}
function map_in(){
	gallery.style.display = '';
	gallery.style.width = '100%';
	gallery.style.height = '760px';
	gallery.style.left = '0px';
	gallery.style.top = '50%';

	fade._in('gallery', 0, 1.0, 'loadHTML_map');
}
function map_visible(){
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'map_in');
}


function scroll_sert_1(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_1_1()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_1_1()} }, 1);
	}
}
function sert_in_1(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_6');
}
function loadHTML_6(URL, destination){
var URL = "sert_load_1.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_1(){
	scroll_sert_1(0);
}
function sert_visible_1_1(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_1');
}



function scroll_sert_2(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_2_2()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_2_2()} }, 1);
	}
}
function sert_in_2(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_7');
}
function loadHTML_7(URL, destination){
var URL = "sert_load_2.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_2(){
	scroll_sert_2(0);
}
function sert_visible_2_2(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_2');
}



function scroll_sert_3(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_3_3()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_3_3()} }, 1);
	}
}
function sert_in_3(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_8');
}
function loadHTML_8(URL, destination){
var URL = "sert_load_3.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_3(){
	scroll_sert_3(0);
}
function sert_visible_3_3(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_3');
}



function scroll_sert_4(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_4_4()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_4_4()} }, 1);
	}
}
function sert_in_4(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_9');
}
function loadHTML_9(URL, destination){
var URL = "sert_load_4.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_4(){
	scroll_sert_4(0);
}
function sert_visible_4_4(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_4');
}



function scroll_sert_5(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_5_5()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_5_5()} }, 1);
	}
}
function sert_in_5(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_10');
}
function loadHTML_10(URL, destination){
var URL = "sert_load_5.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_5(){
	scroll_sert_5(0);
}
function sert_visible_5_5(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_5');
}



function scroll_sert_6(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_6_6()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_6_6()} }, 1);
	}
}
function sert_in_6(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_11');
}
function loadHTML_11(URL, destination){
var URL = "sert_load_6.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_6(){
	scroll_sert_6(0);
}
function sert_visible_6_6(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_6');
}



function scroll_sert_7(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_7_7()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_7_7()} }, 1);
	}
}
function sert_in_7(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_12');
}
function loadHTML_12(URL, destination){
var URL = "sert_load_7.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_7(){
	scroll_sert_7(0);
}
function sert_visible_7_7(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_7');
}




function scroll_sert_8(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_8_8()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_8_8()} }, 1);
	}
}
function sert_in_8(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_13');
}
function loadHTML_13(URL, destination){
var URL = "sert_load_8.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_8(){
	scroll_sert_8(0);
}
function sert_visible_8_8(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_8');
}



function scroll_sert_9(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_9_9()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_9_9()} }, 1);
	}
}
function sert_in_9(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_14');
}
function loadHTML_14(URL, destination){
var URL = "sert_load_9.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_9(){
	scroll_sert_9(0);
}
function sert_visible_9_9(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_9');
}



function scroll_sert_10(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_10_10()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_10_10()} }, 1);
	}
}
function sert_in_10(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_15');
}
function loadHTML_15(URL, destination){
var URL = "sert_load_10.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_10(){
	scroll_sert_10(0);
}
function sert_visible_10_10(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_10');
}



function scroll_sert_11(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_11_11()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_11_11()} }, 1);
	}
}
function sert_in_11(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_sert11');
}
function loadHTML_sert11(URL, destination){
var URL = "sert_load_11.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_11(){
	scroll_sert_11(0);
}
function sert_visible_11_11(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_11');
}



function scroll_sert_12(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_12_12()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_12_12()} }, 1);
	}
}
function sert_in_12(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_sert12');
}
function loadHTML_sert12(URL, destination){
var URL = "sert_load_12.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_12(){
	scroll_sert_12(0);
}
function sert_visible_12_12(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_12');
}




function scroll_sert_13(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_13_13()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_13_13()} }, 1);
	}
}
function sert_in_13(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_sert13');
}
function loadHTML_sert13(URL, destination){
var URL = "sert_load_13.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_13(){
	scroll_sert_13(0);
}
function sert_visible_13_13(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_13');
}





function scroll_sert_14(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_14_14()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_14_14()} }, 1);
	}
}
function sert_in_14(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_sert14');
}
function loadHTML_sert14(URL, destination){
var URL = "sert_load_14.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_14(){
	scroll_sert_14(0);
}
function sert_visible_14_14(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_14');
}




function scroll_sert_15(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_15_15()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_15_15()} }, 1);
	}
}
function sert_in_15(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_sert15');
}
function loadHTML_sert15(URL, destination){
var URL = "sert_load_15.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_15(){
	scroll_sert_15(0);
}
function sert_visible_15_15(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_15');
}




function scroll_sert_16(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_16_16()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_16_16()} }, 1);
	}
}
function sert_in_16(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_sert16');
}
function loadHTML_sert16(URL, destination){
var URL = "sert_load_16.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_16(){
	scroll_sert_16(0);
}
function sert_visible_16_16(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_16');
}




function scroll_sert_17(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_17_17()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_17_17()} }, 1);
	}
}
function sert_in_17(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_sert17');
}
function loadHTML_sert17(URL, destination){
var URL = "sert_load_17.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_17(){
	scroll_sert_17(0);
}
function sert_visible_17_17(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_17');
}




function scroll_sert_18(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_18_18()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_18_18()} }, 1);
	}
}
function sert_in_18(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_sert18');
}
function loadHTML_sert18(URL, destination){
var URL = "sert_load_18.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_18(){
	scroll_sert_18(0);
}
function sert_visible_18_18(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_18');
}




function scroll_sert_19(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_19_19()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_19_19()} }, 1);
	}
}
function sert_in_19(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_sert19');
}
function loadHTML_sert19(URL, destination){
var URL = "sert_load_19.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_19(){
	scroll_sert_19(0);
}
function sert_visible_19_19(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_19');
}





function scroll_sert_20(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_20_20()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_20_20()} }, 1);
	}
}
function sert_in_20(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_sert20');
}
function loadHTML_sert20(URL, destination){
var URL = "sert_load_20.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_20(){
	scroll_sert_20(0);
}
function sert_visible_20_20(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_20');
}




function scroll_sert_21(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_21_21()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_21_21()} }, 1);
	}
}
function sert_in_21(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_sert21');
}
function loadHTML_sert21(URL, destination){
var URL = "sert_load_21.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_21(){
	scroll_sert_21(0);
}
function sert_visible_21_21(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_21');
}




function scroll_sert_22(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_22_22()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_22_22()} }, 1);
	}
}
function sert_in_22(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_sert22');
}
function loadHTML_sert22(URL, destination){
var URL = "sert_load_22.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_22(){
	scroll_sert_22(0);
}
function sert_visible_22_22(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_22');
}





function scroll_sert_23(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_23_23()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_23_23()} }, 1);
	}
}
function sert_in_23(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_sert23');
}
function loadHTML_sert23(URL, destination){
var URL = "sert_load_23.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_23(){
	scroll_sert_23(0);
}
function sert_visible_23_23(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_23');
}




function scroll_sert_24(coord){
	var YY = getBodyScrollTop();
	if(YY <= coord){
		var TT = setInterval(function() {if(YY < coord) {YY = YY+10;} window.scroll(0,YY); if(YY >= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_24_24()} }, 1);
	}else{
		var TT = setInterval(function() {if(YY > coord) {YY = YY-10;} window.scroll(0,YY); if(YY <= coord) {window.scroll(0,coord); clearInterval(TT); sert_visible_24_24()} }, 1);
	}
}
function sert_in_24(){
	sert.style.display = '';
	sert.style.width = '100%';
	sert.style.height = '100%';
	sert.style.left = '0px';
	sert.style.top = '0px';

	fade._in('sert', 0, 1.0, 'loadHTML_sert24');
}
function loadHTML_sert24(URL, destination){
var URL = "sert_load_24.php";
var destination = "sert";
  dest = destination;
  if(window.XMLHttpRequest){
    request = new XMLHttpRequest();
    request.onreadystatechange = processStateChange;
    request.open("GET", URL, true);
    request.send(null);
  }
}
function sert_visible_24(){
	scroll_sert_24(0);
}
function sert_visible_24_24(){
	window.document.flash.SetVariable("cloud_anim", "stop");
	pop_up.style.width = '100%';
	pop_up.style.height = '1480px';

	fade._in('pop_up', 0, 0.85, 'sert_in_24');
}
