﻿ jQuery().ready(function() {



	        if ($("h1:contains('Steel')").length) {
	            jQuery('#page_gallery').accordion({ header: '.toggler', active: 0 });
	        }
	        else if ($("h1:contains('Pressings and Forging')").length) {
	            jQuery('#page_gallery').accordion({ header: '.toggler', active: 1 });
	        }
	        else if ($("h1:contains('Process')").length) {
	            jQuery('#page_gallery').accordion({ header: '.toggler', active: 2 });
	        }
	        else if ($("h1:contains('Heritage')").length) {
	            jQuery('#page_gallery').accordion({ header: '.toggler', active: 3 });
	        }
	        else if ($("h1:contains('Marine / Offshore')").length) {
	            jQuery('#page_gallery').accordion({ header: '.toggler', active: 4 });
	        }
	        else if ($("h1:contains('Power')").length) {
	            jQuery('#page_gallery').accordion({ header: '.toggler', active: 5 });
	        }
	        else if ($("h1:contains('Paper')").length) {
	            jQuery('#page_gallery').accordion({ header: '.toggler', active: 6 });
	        }
	        else if ($("h1:contains('Petro')").length) {
	            jQuery('#page_gallery').accordion({ header: '.toggler', active: 7 });
	        }
	        else {
	            jQuery('#page_gallery').accordion({ header: '.toggler', active: 0 });
	        }

	    })
