
var chapel = function(){
	
	var C = {
		
		hide : function() {
			$("#chapelTitle").hide(500);
			console.log("hide");
		},
		
		show : function() {
			$("#chapelTitle").show(500);
			console.log("show");
		}
	};
	
	return C;
}();

function hide(){
	$("#chapelTitle").hide();
}

function show(){
	$("#chapelTitle").show();
}

var forSwf = function(){
	S = {
		hide : function() {
			$("#chapelTitle").hide();
			//$("#banner").hide();
		},
		show : function() {
			$("#chapelTitle").show();
			//$("#banner").show();
		}
	};
	return S;
}();
