I have optimized a website and have included toggled content. By toggled content I mean content that becomes visible after clicking a link (Expand and Collaps). The code is as followings:
<li id="article-1">
<h3><a href="" onClick="$('#article-1 p').not(':first').toggle(); return false;">Article title</a></h3>
<p>First paragraph</p>
<p>Second paragraph</p>
<p>Third paragraph</p>
</li>
Would Google consider this content less valuable since it is not 'directly' visible? Are there any key concepts to keep in mind when working with toggled content?