     /* DIV handlers:
------------------------------------------------------------------------------------------------ */
var iframe01_showhide = {
	show: function(){
		window.top.document.getElementById('iframe01').style.visibility="visible";
	},
 	hide: function(){
		window.top.document.getElementById('iframe01').style.visibility="hidden";
	}
};
var TopW_layer02_showhide = {
	show: function(){
		window.top.document.getElementById('layer02').style.visibility="visible";
	},
 	hide: function(){
		window.top.document.getElementById('layer02').style.visibility="hidden";
	}
};
var cLayer00_3_showhide = {
	show: function(){
		window.document.getElementById('cLayer00_3').style.visibility="visible";
	},
 	hide: function(){
		window.document.getElementById('cLayer00_3').style.visibility="hidden";
	}
};
/* --------------------------------------------------------------------------------------------- */

     /* onLoad ttxt:
------------------------------------------------------------------------------------------------ */
function onload_text(){
	iframe01_showhide.show();
	TopW_layer02_showhide.hide();
	cLayer00_3_showhide.hide();
};
/* --------------------------------------------------------------------------------------------- */

     /* MooTools:
------------------------------------------------------------------------------------------------ */
window.addEvent('domready', function(){
/* domready BEGIN --> */

/* Effects: */
var cLayer00_3_fx = new Fx.Styles('cLayer00_3', {duration: 500, transition: Fx.Transitions.Quart.easeOut});

/* onLoad (start-up sequence): */
window.addEvent('load', function(){
	cLayer00_3_showhide.show();
	cLayer00_3_fx.start({
		'opacity':'0'
	}).chain(function(){
		cLayer00_3_showhide.hide();
	});
});

/* Main Menu: */
var link_list = $$('#view_all a');

link_list.each(function(element) {
	
	element.addEvent('click', function(){
		iframe01_showhide.hide();
		TopW_layer02_showhide.show();
	});
});

/* <-- domready END */
});
/* --------------------------------------------------------------------------------------------- */ 
