function openFaq(faqItem)
{
// select the overlay element - and "make it an overlay"
 $(faqItem).overlay({     
   // expose: {          
	// you might also consider a "transparent" color for the mask
	// load mask a little faster         
	//loadSpeed: 200          
	// highly transparent        
	 //, opacity: 0.5
	 //},     
	 // disable this for modal dialog-type of overlays     
	closeOnClick: true,
	 // we want to use the programming API     
	api: true  
	// load it immediately after the construction
 }).load();
}
