	function togglefaq()
     {
         if (toggle.checked == true){
             expandfaq();
             }
         else{
              contractfaq();
             }
     }
	
	function expandfaq()
	{
		var faqitem = document.all.item("faqitem");
		if (faqitem != null)
		{
			if (faqitem.length != null)
			{
			    for (i=0; i<faqitem.length; i++)
			    {
					faqitem(i).style.display = "inline";
				}                                 
			}                                         
		}
	}     
    
    function contractfaq()
	{
	     var faqitem = document.all.item("faqitem");
	     if (faqitem != null){
                    if (faqitem.length != null){
                              for (i=0; i<faqitem.length; i++){
                                        faqitem(i).style.display = "none";                                                                               
                                   }                                 
                    }                                            
          }
     }
     
     function getPar(o) 
     {
      var ele = new Object();
      ele = findDIV(o)
		if (ele!=null)
		{
			var oA = ele.children.item(1);
			if (oA.style.display == "inline")
			{
				oA.style.display = "none";
			}
			else
			{
				oA.style.display = "inline";
				
			} 
		}

	}

	function findDIV(x)
	{
		
		return x.parentNode.parentNode;
	}
	
	
	function overState(obj)
	{
		obj.currentColor = obj.style.color;
		obj.style.color = "#5c8ebc";
		obj.style.cursor = "hand";
	}

	function outState(obj)
	{
		if ("#5c8ebc" == obj.style.color)
		{
			obj.style.color = obj.currentColor;
		}
	}
	