// JavaScript Document$(document).ready( function(){		$("#pahsbIntroduction").show();		$("#pahsbCertificate").hide();		$("#pahsbAgency").hide();				$("#pahsb1").click( function(){			$("#pahsbIntroduction").animate({ width: "860", left: "15"}, "slow");			$("#pahsbCertificate").animate({ width: "20", left: "885"}, "slow");			$("#pahsbAgency").animate({ width: "20", left: "885"}, "slow");			$("#pahsbIntroduction").show("slow");			$("#pahsbCertificate").hide("slow");			$("#pahsbAgency").hide("slow");			return false; });				$("#pahsb2").click( function(){			$("#pahsbIntroduction").animate({ width: "20", left: "885"}, "slow");			$("#pahsbCertificate").animate({ width: "860", left: "15"}, "slow");			$("#pahsbAgency").animate({ width: "20", left: "885"}, "slow");			$("#pahsbIntroduction").hide("slow");			$("#pahsbCertificate").show("slow");			$("#pahsbAgency").hide("slow");			return false; });				$("#pahsb3").click( function(){			$("#pahsbIntroduction").animate({ width: "20", left: "885"}, "slow");			$("#pahsbCertificate").animate({ width: "20", left: "885"}, "slow");			$("#pahsbAgency").animate({ width: "860", left: "15"}, "slow");			$("#pahsbIntroduction").hide("slow");			$("#pahsbCertificate").hide("slow");			$("#pahsbAgency").show("slow");			return false; });	});
