// Quick rollover/out mockup for CALRTA's template

$(document).ready(function() {
  $('.post').click(function() {
  	showHide(this);
  });
});

function showHide(el) {
    var content_class = (el.className == 'post_hover')?'post_content':'post_content_visible';
    var this_class    = (el.className == 'post_hover')?'post':'post_hover';
    for (var i=0; i<el.childNodes.length; i++) {
      if (el.childNodes[i].className && (el.childNodes[i].className == 'post_content' ||
      	el.childNodes[i].className == 'post_content_visible')) {
        el.childNodes[i].className = content_class;
      }
    }
    el.className = this_class;
}