// GMV javascript 
// revision 1.0
// 03/26/08

$(document).ready(function(){  
    $(".listen").click(function () {
      $(".pop-listen").toggle();
    });
    $(".advantage").click(function () {
      $(".pop-advantage").toggle();
    });
    $(".buy").click(function () {
      $(".pop-buy").toggle();
    });
    $(".package").click(function () {
    	  var foo = jQuery(this).attr("value");
       if (foo == 1) { $("#theMusic").hide(); } 
	  if (foo == 2) { $("#theMusic").show(); }
	  if (foo == 3) { $("#theMusic").show(); }
	})
  });
  
  
 function fold(theid) {
        var theid=document.getElementById(theid);
        theid.style.display=(theid.style.display=="block")? "none" :
"block";
}