function total_collect_ad(action) {
	document.getElementById('ad_img').style.display = (action.toLowerCase() == "show") ? "block" : "none";
}

$(document).ready(function() {
		$('#total_green_logo', '#total_green').click(function() {
				$('#total_green_box', '#total_green').slideDown({duration: 500, easing: 'easeOutQuad'});
			}
		);		
		$('#close_total_green_box', '#total_green_box').click(function() {
				$('#total_green_box', '#total_green').slideUp();
			}
		);
	}
);