/*##########################
# Social Widget JavaScript #
############################
##############################################################################
# Proprietary Software - legal note                                          #
# Author: Sean Gallagher.                                                    #
# Owner: Sean Gallagher and Gallagher Website Design                         #
#                                                                            #
# Unauthorized use of this script is subject to legal repercussions.         #
# For authorization to use this script you must have written permission from #
# Sean Gallagher (webmaster@gallagherwebsitedesign.com)                      #
# http://www.GallagherWebsiteDesign.com                                      #
#                                                                            #
# (C) Copyright 2010. Gallagher Website Design. All Rights Reserved          #
############################################################################*/

////////////////////
// TAB HIDE SHOW //
///////////////////
function tab(e,h,t)
{
 // GO THROUGH ALL TABS AND TURN TO NON-ACTIVE
 var li = document.getElementById(h).getElementsByTagName('li');
 for(x=0;x<li.length;x++) 
 {
  var a = li[x].getElementsByTagName('a');
  for(i=0;i<a.length;i++) 
  {
   a[i].className = a[i].className.replace(/active/,'');
  }
 }
 // TURN CLICKED TAB ACTIVE 
 document.getElementById('a_'+e).className += ' active';
 // GO THROUGH ALL TABINNERS AND HIDE
 var li = document.getElementById(t).getElementsByTagName('li');
 for(x=0;x<li.length;x++) { li[x].className = li[x].className.replace(/active/,''); }
 // SHOW TABINNER RELATED TO CLICKED TAB
 document.getElementById('h_'+e).className += ' active';
 // RETURN
 return false;
}

