/**
 * WDC Facebook Twitter Feed
 * @author Web Designs Company <contact@wdc.com>
 * @link http://www.web-designs-company.com
 * @copyright (C) 2011 - 2012 Web Designs Company
 * @license GNU/GPL, see LICENSE.php for full license.
**/

var tabs	  = document.getElementsByTagName("span"); 	 

function wdcToggle(activeTab) {

      var content = document.getElementsByTagName("div");  
 
            for(var i=0; i<content.length; i++) {
                  name = content[i].getAttribute("name");
                  if (name == 'content') {
                        if (content[i].id == activeTab) {
                        content[i].style.display = 'block';
						document.getElementById(activeTab).className = 'selected';					
                  }
                  else {
						content[i].style.display = 'none';	
						for(var x=0; x<tabs.length; x++) 
						{ 
							if (tabs[x].id !== activeTab) { tabs[x].className = '';}
						}
	                  }
            }
      }
}
