$(document).ready(function() {

	$("#hideContentButtonView").click(function() {
		$("#container").fadeOut();
		
		$(this).fadeOut();
		$("#showContentButtonView").fadeIn();
	});
	
	$("#showContentButtonView").click(function() {
		$("#container").fadeIn();
		
		$(this).fadeOut();
		$("#hideContentButtonView").fadeIn();
	});
	
	
}); 
