
jQuery(document).ready(function(){
	// JavaScript for gasfitters page.
	$('.accordion h3').click(function() {
	   $(this).next().toggle('slow').prev('h3').toggleClass('accordion-open');
	   return false;
	}).next().hide();
	$('.accordion div:first').show().siblings('h3:first').addClass('accordion-open');
	$('.accordion h3').css('cursor','pointer');
	
	// JavaScript for where-to-refuel table.
	$('thead').click(function() { 
		$(this).toggleClass('accordion-open'); 
		$(this).siblings('tbody').slideToggle('fast'); 
		return false; 
	}); 
	$('tbody').hide(); 
	$('tbody:first').show(); 
	$('thead:first').addClass('accordion-open'); 
	$('thead').css('cursor','pointer');
});

