// JavaScript Document
function hidden_art()
{
$('#art_hidden').hide(2000);
$('#show_button').show(2000);
}

function show_art()
{
$('#art_hidden').show(2000);
$('#show_button').hide(2000);
}

hidden_art();

