// JavaScript Document

$(document).ready(function() {

$('.toggle-content').hide();

$('.toggle-link a').toggle(function() {
	$(this).parent().next('.toggle-content').slideDown("fast");
}, function() {
	$(this).parent().next('.toggle-content').slideUp("fast");
});

});
