
//<![CDATA[    
   (function($) {
   // START ready function
	   $(document).ready(function(){
		 
			// TOGGLE SCRIPT
			 $(".toggable").hide();
			 
			 $(".toggle").click(function(event){
			   $(this).parents(".toggleContainer").find(".toggable").toggle("normal");
			   
			   // Stop the link click from doing its normal thing
			   return false;
			}); // END TOGGLE
		 
					 
	   }); // END ready function
	})(jQuery);
 //]]>
