var secrets = {
	init: function(){
		if($("secret_container")){
			$("secret_container").childElements().each(function(e,i){
				e.defaultZindex = e.getStyle("z-index");
				e.observe("mouseenter",function(){
					e.setStyle({zIndex:"100"});
				}).observe("mouseleave",function(){
					e.setStyle({zIndex:e.defaultZindex});
				})
			});
		}
	}
};
document.observe("dom:loaded",secrets.init.bind(secrets));
