$(document).ready(function(){
   
   $("div.moreInfo").hide();
   $("li.moreInfo").show();
   
   
   $("li.moreInfo a").click(function () {
   		
   		if ($(this).hasClass("open")){ //if text already visible
   		//close
   		$(this).removeClass("open");//show text
   		$(this).parent().parent().next().slideUp().removeClass("open"); //close all	
   		}
   		else
   			{ //if opening hidden text
   			$(this).addClass("open");//show text
   			$(this).parent().parent().next().slideDown().addClass("open");//show text
   			}
   		return false;
   });

 });
