// Tab Swapping 
jQuery.noConflict();
jQuery(function () {

	// About & Services Pages
  var tabContainers = jQuery('div.tabs > div');
  tabContainers.hide().filter(':first').show();
  
  	jQuery('ul.tabNavigation a').click(function () {
  	
  		tabContainers.hide();        			
  		tabContainers.filter(this.hash).show();
  		jQuery('ul.tabNavigation a').removeClass('selected');
  		jQuery(this).addClass('selected');
  		
  	return false;
  
  }).filter(':first').click();
  
});