/*	Cachecoeur.de - JS - Show and Hide elements */

function hidecomment() {
  Element.hide('commentcontent');
  Element.show('logo');
  $('commenttitle').onclick = showcomment;
}

function showcomment() {
  Element.show('commentcontent');
  Element.hide('logo');
  $('commenttitle').onclick = hidecomment;
}
