 $(document).ready(function() {
   $("#complete").hide();
	 $("#learnmorewrapper").hide();
	  $("#synopsis").removeClass("sh_donotshow");
	 $("#synopsis").addClass("sh_show");
   $("#synopsis").click(function(event) {
     $("#synopsis").hide();
		  $("#complete").toggle();
			// Stop the link click from doing its normal thing
       event.preventDefault();
   });
	 $("#learnmoreheading").click(function(event) {
			$("#learnmoreheading").toggleClass("ui-icon ui-icon-triangle-1-s");
			$("#learnmorewrapper").toggle(
  function () {

  });
														
		});
	 $("#att_heading").click(function() {
		 $("#attractive").toggle(
  function () {
  

  });
		  });
	  $("#pos_heading").click(function() {
		 $("#positive").toggle(
  function () {
  

  });
		  });
		 $("#exc_heading").click(function() {
		 $("#exceptional").toggle(
  function () {
  

  });
		  });
		  $("#com_heading").click(function() {
		 $("#competitive").toggle(
  function () {
  

  });
		  });
	 /*$("#complete").click(function(event) {
     $("#complete").hide();
		  $("#synopsis").toggle();
			// Stop the link click from doing its normal thing
       event.preventDefault();
   });*/
 });
