
jQuery.noConflict();
jQuery(document).ready(
	function()
	{
nodes=jQuery(".openedtop");
nodesin=jQuery(".opened");

	for (i=0; i < nodes.length; i++) 
		{
		if(nodesin[i])
			{
			nodesin[i].id="op"+i;
			nodes[i].id="optop"+i;
			nodes[i].onclick=function()
				{
				if(jQuery("#op" + this.id.replace("optop", "")).css("display") == "none")
					{
					jQuery("#op" + this.id.replace("optop", "")).animate({height: "show"},300);
					}
				else
					{
					jQuery("#op" + this.id.replace("optop", "")).animate({height: "hide"},300);						
					}
				}
			}
		}
nodescl=jQuery(".closedtop");
nodesclin=jQuery(".closed");

	for (i=0; i < nodescl.length; i++) 
		{
		if(nodesclin[i])
			{
			nodesclin[i].id="cl"+i;
			nodescl[i].id="cltop"+i;
			nodescl[i].onclick=function()
				{
				if(jQuery("#cl" + this.id.replace("cltop", "")).css("display") == "none")
					{
					jQuery("#cl" + this.id.replace("cltop", "")).animate({height: "show"},300);
					}
				else
					{
					jQuery("#cl" + this.id.replace("cltop", "")).animate({height: "hide"},300);						
					}
				}
			}
		}
	
	}
	);
