$(document).ready(function() {
	$(".mainContent h1").click(function(e){
		$(".content_text").toggle();
	});
});