/* Javascript
 *
 * Use: Hides and exposes long text used in profile and games page.
 */
function hide(){
	$('#hide').hide();
	$('#hidden_text').hide();
	$('#show').show();
	$('#show_text').show();
}
function show() {
	$('#hide').show();
	$('#hidden_text').show();
	$('#show').hide();
	$('#show_text').hide();
}
