You can auto minimize all the DHTML windows when the page loads with something like the below function:
Code:
<script type="text/javascript">
function minimizeall(){
for (var i=0; i<dhtmlwindow.tobjects.length; i++)
dhtmlwindow.minimize(dhtmlwindow.tobjects[i].getElementsByTagName('img')[0], dhtmlwindow.tobjects[i])
}
</script>
<body onload="setTimeout('minimizeall()', 500)">
The array dhtmlwindow.tobjects gives you access to all DHTML window instances on the page, which is the key is making this happen. Regarding the animation though, there's currently no easy way to add such an effect.
Bookmarks