nubedo = function() {
	var initValue;
	return {
		
		init : function() {
			if ($('#viewText').length) {
				initValue = $('#viewText').text();
				$('#viewText').click(nubedo.homeScroll);
			}
		},
		homeScroll : function() {
			if ($("#home").height() == 250) {
				$("#home").animate(
					{height: "0"}, 750
				);
				$("#viewText").text(initValue);
			}else{
				$("#home").animate(
					{height: "250"}, 750
				);
				$("#viewText").text('close');
			}
		}
	};
}();

$(document).ready(function() { nubedo.init(); });