var toggleParasOpen =
    {
        init: function()
            {

					$('.togglediv').hide(); //once DOM is loaded, hides all .togglediv elements
					$('.toggleLink').click(function() { //sets onclick event handler for each .togglelink link
				    var $thisLink = $(this).find('a'); // locate the clicked link
					 var $toggleDiv = $(this).parent().next('div') // use the parent of the located link to find the next div, in this case the hidden div element under the paragraph holding the link
				    $toggleDiv.toggle('fast'); // for every click, toggle the div slowly

					 return false;

					});

				}			
    };
$(document).ready(function(){toggleParasOpen.init();});
