<!--

  
    // -------------------------------------------------------------------
// Switch Content Script II (icon based)- By Dynamic Drive, available at: http://www.dynamicdrive.com
// Last updated April 8th, 07. Requires switchcontent.js!
// -------------------------------------------------------------------



function switchicon(className, filtertag){
	switchcontent.call(this, className, filtertag) //inherit primary properties from switchcontent class
}

switchicon.prototype=new switchcontent //inherit methods from switchcontent class
switchicon.prototype.constructor=switchicon

switchicon.prototype.setStatus=null
switchicon.prototype.setColor=null

switchicon.prototype.setHeader=function(openHTML, closeHTML){ //PUBLIC
	this.openHTML=openHTML
	this.closeHTML=closeHTML
}

function toggleContent(className)
{
    var faq=new switchicon(className, "div"); //Limit scanning of switch contents to just "div" elements
    faq.setHeader('<img src="images/minus.gif" alt="Contract data detail"/>', '<img src="images/plus.gif" alt="Expand data detail" />'); //set icon HTML
    //faq.collapsePrevious(true); //Allow only 1 content open at any time
    faq.setPersist(false); //No persistence enabled
    //faq.defaultExpanded(0) //Set 1st content to be expanded by default
    faq.init();
}

//PRIVATE: Contracts a content based on its corresponding header entered

switchicon.prototype.contractcontent=function(header){
	var innercontent=document.getElementById(header.id.replace("-title", "")) //Reference content for this header
	innercontent.style.display="none"
	header.innerHTML=this.closeHTML
	header=null
}


//PRIVATE: Expands a content based on its corresponding header entered

switchicon.prototype.expandcontent=function(header){
	var innercontent=document.getElementById(header.id.replace("-title", ""))
	innercontent.style.display="block"
	header.innerHTML=this.openHTML
	header=null
}
//   -->