/*
  structure

  $('#anchor_id').click(function(){
  $('#div_id_containing_review').toggle();
});
  toggling its visibility
  
*/

jQuery(document).ready(function() {
	// do something here

//gl	
$('#show_more').click(function(){
	$('#more').toggle();
});
$('#show_more2').click(function(){
	$('#more').toggle();
});

$('#show_gamelan').click(function(){
	$('#more_gamelan').toggle();
});

$('#hide_gamelan').click(function(){
	$('#more_gamelan').toggle();
});

$('#hide_other').click(function(){
	$('#more_other').toggle();
});

$('#show_other').click(function(){
	$('#more_other').toggle();
});


//sm
$('#sm_animal_psi').click(function(){
	$('#sm_animal_psi_more').toggle();
});
$('#sm_animal_psi_hide').click(function(){
	$('#sm_animal_psi_more').toggle();
});

$('#sm_show_outerspace').click(function(){
	$('#sm_show_outerspace_more').toggle();
});

$('#hide_sm_gamelan').click(function(){
	$('#sm_show_outerspace_more').toggle();
});

$('#sm_foxy_digitalis_show').click(function(){
	$('#sm_foxy_digitalis_more').toggle();
});
$('#sm_foxy_digitalis_hide').click(function(){
	$('#sm_foxy_digitalis_more').toggle();
});

$('#sm_other_show').click(function(){
	$('#sm_other_more').toggle();
});

$('#sm_other_hide').click(function(){
	$('#sm_other_more').toggle();
});

//hs
$('#hs_animal_psi').click(function(){
	$('#hs_animal_psi_more').toggle();
});
$('#hs_animal_psi_hide').click(function(){
	$('#hs_animal_psi_more').toggle();
});

$('#hs_show_outerspace').click(function(){
	$('#hs_show_outerspace_more').toggle();
});

$('#hide_hs_gamelan').click(function(){
	$('#hs_show_outerspace_more').toggle();
});

$('#hs_other_show').click(function(){
	$('#hs_other_more').toggle();
});

$('#hs_other_hide').click(function(){
	$('#hs_other_more').toggle();
});

$('#hsdomvomc_soundcollector_show').click(function(){
  $('#hsdomvomc_soundcollector_review').toggle();
});
$('#hsdomvomc_soundcollector_hide').click(function(){
  $('#hsdomvomc_soundcollector_review').toggle();
});

//synb
$('#synbhsdom_animalpsi_show').click(function(){
  $('#synbhsdom_animalpsi_review').toggle();
});
$('#synbhsdom_animalpsi_hide').click(function(){
  $('#synbhsdom_animalpsi_review').toggle();
});
$('#synbhsdom_juliancope_show').click(function(){
  $('#synbhsdom_juliancope_review').toggle();
});
$('#synbhsdom_juliancope_hide').click(function(){
  $('#synbhsdom_juliancope_review').toggle();
});


//owlrec
$('#owlrec_animal_psi').click(function(){
	$('#owlrec_animal_psi_more').toggle();
});
$('#owlrec_animal_psi_hide').click(function(){
	$('#owlrec_animal_psi_more').toggle();
});

$('#owlrec_show_outerspace').click(function(){
	$('#owlrec_show_outerspace_more').toggle();
});

$('#hide_owlrec_gamelan').click(function(){
	$('#owlrec_show_outerspace_more').toggle();
});

$('#owlrec_other_show').click(function(){
	$('#owlrec_other_more').toggle();
});

$('#owlrec_other_hide').click(function(){
	$('#owlrec_other_more').toggle();
});

//uw owl - new birth
$('#uwowl_new_birth_show').click(function(){
  $('#uwowl_new_birth_review').toggle();
});
$('#uwowl_new_birth_hide').click(function(){
  $('#uwowl_new_birth_review').toggle();
});
$('#uwowl_new_birth_roots_show').click(function(){
  $('#uwowl_new_birth_roots_review').toggle();
});
$('#uwowl_new_birth_roots_hide').click(function(){
  $('#uwowl_new_birth_roots_review').toggle();
});

//grasslung/pelerine
$('#glpl_show').click(function(){
  $('#glpl_review').toggle();
});
$('#glpl_hide').click(function(){
  $('#glpl_review').toggle();
});

//borg 1
$('#borg1_wire_show').click(function(){
  $('#borg1_wire_review').toggle();
});
$('#borg1_wire_hide').click(function(){
  $('#borg1_wire_review').toggle();
});







});