//Left To Right Or Right To Left
//In order to do either you must float your #comment 
//the direction you want your content to come from!
$(document).ready(function() {
	$("#curtain-left").show();
	$("#curtain_button").click(function() {
		$("#curtain-left").animate({width: "toggle"}, 1000);
	});
});
$(document).ready(function() {
	$("#curtain-right").show();
	$("#curtain_button").click(function() {
		$("#curtain-right").animate({width: "toggle"}, 1000);
	});
});

