/* 2007-2008 (c) Copyright Personal Life Media, Inc.  All rights reserved. */
$(document).ready(function(){
  $('.jshide').hide();
  $('.category > a').click(function() {
    var showsList = $(this).next();
    if (showsList.hasClass('jshide')) {
      showsList.removeClass('jshide');
    } else {
      showsList.addClass('jshide');
    }
    return false;
  });
  $('a.playerpopup').click(function () {
    var url = $(this).attr('href');
    popup_window = window.open(
      url, 'plmplayer' , 'height=220,width=452,left=100,top=100'
    );
    if (window.focus) { popup_window.focus(); }
    return false;
  });
});
