$(document).ready(function(){

	$(".show-hide").click(function(){
		if ($('#main-content').is(':visible')) {
			$("#main-content").animate({ opacity: 'hide' }, "slow");	
			$("#sub-content").animate({ opacity: 'hide' }, "slow");
			$(this).toggleClass("show-hide_active"); return false;
		} else {
			$("#main-content").animate({ opacity: 'show' }, "slow");	
			$("#sub-content").animate({ opacity: 'show' }, "slow");
			$(".show-hide").toggleClass("show-hide_active");
		}
	});	

});

/*
	$("#my-button").click(function(){
		if ($('#main-content').is(':visible')) {
			$("#main-content").animate({ opacity: 'hide' }, "slow");	
			$("#sub-content").animate({ opacity: 'hide' }, "slow");
			$(this).toggleClass("active"); return false;
		} else {
			$("#main-content").animate({ opacity: 'show' }, "slow");	
			$("#sub-content").animate({ opacity: 'show' }, "slow");
		}
	});	
*/
