var rootPath="http://iridiumriskservices.com";
var imagePath= rootPath + "/images";
var menuPath= rootPath + "/topMenu";
var scriptPath= rootPath + "/scripts";
var videoPath= rootPath + "/video";
var pdfPath= rootPath + "/pdf";
var previousPage = "";
var address = window.location.href;

swfobject.embedSWF("servicesMenu.swf", "servicesMenu", "172", "610", "9.0.0","expressInstall.swf", undefined, undefined, {id:"servicesMenu", name: "servicesMenu"});
swfobject.embedSWF("companyM.swf", "companyM", "190", "215", "9.0.0","expressInstall.swf", undefined, undefined, {id:"companyM", name: "companyM"});		
function removeAllChildNodes(node) {
	if (node && node.hasChildNodes && node.removeChild) {
		while (node.hasChildNodes()) {
		node.removeChild(node.firstChild);
		}
	}
}
function removeAllLeftContent(){
	var leftContent = document.getElementById("leftContent");
	removeAllChildNodes(leftContent);
}
function changeTopStuff(pageName){

	var flashBanner = document.getElementById('flashBanner');
	var footer = document.getElementById('footer');
	var metaTitle = "";
	var footerTop= 0;
	removeAllChildNodes(flashBanner);
	if(pageName == "COMPANY"){
		metaTitle = "Iridium Company Page";
		flashBanner.innerHTML = addCompanyHeaderHTML(pageName);
		footerTop = 1095;
	}else if(pageName == "PEOPLE"){
		metaTitle = "Iridium People Page";
		flashBanner.innerHTML = addStaticBannerHTML("smallHeader.jpg");
		footerTop =950;
	}else if(pageName == "COMMUNITY"){
		metaTitle = "Iridium Community Page";
		flashBanner.innerHTML = addStaticBannerHTML("smallHeader.jpg");
		footerTop = 1100;
	}else if(pageName == "NEWS"){
		metaTitle = "Iridium News Page";
		flashBanner.innerHTML = addStaticBannerHTML("smallHeader.jpg");
		footerTop = 610;
	}else if(pageName == "PARTNERS"){
		metaTitle = "Iridium Partners Page";
		flashBanner.innerHTML = addStaticBannerHTML("smallHeader.jpg");
		footerTop = 560;
	}else if(pageName == "CONTACT US"){
		metaTitle = "Iridium Contact Page";
		footerTop = 720;
		flashBanner.innerHTML = addStaticBannerHTML("contact.jpg");
	}else if(pageName == "CAREERS"){
		metaTitle = "Iridium Careers Page";
		footerTop = 850;
		flashBanner.innerHTML = addStaticBannerHTML("carreers.jpg");
	}else if(pageName == "RESULTS"){
		metaTitle = "Iridium Results Page";
		footerTop = 5000;
		flashBanner.innerHTML = addStaticBannerHTML("results.jpg");
	}else if(pageName == "SERVICES"){
		metaTitle = "Iridium Services Page";
		flashBanner.innerHTML = addStaticBannerHTML("services.jpg");
		footerTop = 1060;
	}else if(pageName == "HOME"){
		flashBanner.innerHTML = addStaticBannerHTML("home.jpg");
		footerTop = 770;
	}else if(pageName == "OILANDGAS"){
		metaTitle = "Iridium Oil and Gas Page";
		flashBanner.innerHTML = addStaticBannerHTML("smallHeader.jpg");
		footerTop = 820;
	}else if(pageName == "POWERANDUTILITIES"){
		metaTitle = "Iridium Power and Utilities Page";
		flashBanner.innerHTML = addStaticBannerHTML("smallHeader.jpg");
		footerTop = 830;
	}else if(pageName == "CLEANENERGY"){
		metaTitle = "Iridium Clean Energy Page";
		flashBanner.innerHTML = addStaticBannerHTML("smallHeader.jpg");
		footerTop = 980;
	}else if(pageName == "RISKIDENTIFICATION"){
		metaTitle = "Iridium Risk Identification Page";
		flashBanner.innerHTML = addStaticBannerHTML("smallHeader.jpg");
		footerTop = 830;
	}else if(pageName == "RISKCONTROL"){
		metaTitle = "Iridium Risk Control Engineering Page";
		flashBanner.innerHTML = addStaticBannerHTML("smallHeader.jpg");
		footerTop = 830;
	}else if(pageName == "INSURANCEPLACEMENT"){
		metaTitle = "Iridium Insurance Placement Page";
		flashBanner.innerHTML = addStaticBannerHTML("smallHeader.jpg");
		footerTop = 830;
	}else if(pageName == "EXECUTIVERISK"){
		metaTitle = "Iridium Executive Risks Page";
		flashBanner.innerHTML = addStaticBannerHTML("smallHeader.jpg");
		footerTop = 830;
	}else if(pageName == "CAPTIVEMANAGEMENT"){
		metaTitle = "Iridium Captive Management Page";
		flashBanner.innerHTML = addStaticBannerHTML("smallHeader.jpg");
		footerTop = 830;
	}else if(pageName == "CLAIMSADVOCACY"){
		metaTitle = "Iridium Claims Advocacy Page";
		flashBanner.innerHTML = addStaticBannerHTML("smallHeader.jpg");
		footerTop = 830;
	}else if(pageName == "PROPERTY"){
		metaTitle = "Iridium Property and Casualty Page";
		flashBanner.innerHTML = addStaticBannerHTML("smallHeader.jpg");
		footerTop = 830;
	}
	var footerStyle = "top:" + footerTop;
	footer.setAttribute("style",footerStyle);
	var pageNum = getPageNum(pageName);
	swfobject.embedSWF("mainMenu.swf", "mainMenu", "480", "40", "9.0.0","expressInstall.swf", {pageName:pageNum}, undefined, {id:"mainMenu", name: "mainMenu"});
}
function addLeftImage(leftImage){
	var content = "<image src = \"" + imagePath + "/leftBar/" + leftImage + "\"></image>";
	return content;
}
function addLeftImageToLeftContent(leftImage){
	var contentHolder = document.getElementById("leftContent");
	var content = "<image src = \"" + imagePath + "/leftBar/" + leftImage + "\"></image>";
	contentHolder.innerHTML = content;
}
function changeContent(currentPage){
	var pageName = currentPage;
	
	if(pageName == ""){
		pageName = "HOME";
	}
	changeTopStuff(pageName);
	var content = "";
	var contentHolder;
	var leftDiv;
	var rightDiv; 
	if(previousPage != pageName){
		
		if(pageName == "HOME"){
			contentHolder = document.getElementById("content");
			removeAllChildNodes(contentHolder);
			var horizontalSpacer = document.createElement('div');
			horizontalSpacer.setAttribute('id',"horizontalSpacer");
			contentHolder.appendChild(horizontalSpacer);
			leftDiv = document.createElement('div');
			rightDiv = document.createElement('div');
			leftDiv.setAttribute('id',"leftAndCenterContent");
			rightDiv.setAttribute('id',"rightHomeContent");
			rightDiv.innerHTML = "<image src=\"" + imagePath + "/rightBar/homeQuote.gif\"></image>";
		}
		else if((previousPage == "HOME") || (previousPage == "")){
			contentHolder = document.getElementById("content");
			removeAllChildNodes(contentHolder);
			var horizontalSpacer = document.createElement('div');
			horizontalSpacer.setAttribute('id',"horizontalSpacer");
			contentHolder.appendChild(horizontalSpacer);
			leftDiv = document.createElement('div');
			rightDiv = document.createElement('div');
			leftDiv.setAttribute('id',"leftContent");
			rightDiv.setAttribute('id',"rightAndCenterContent");
			if((pageName == "OILANDGAS") || (pageName == "SERVICES") || (pageName == "POWERANDUTILITIES") || (pageName == "CLEANENERGY") || (pageName == "RISKIDENTIFICATION") || (pageName == "RISKCONTROL") || (pageName == "INSURANCEPLACEMENT") || (pageName == "EXECUTIVERISK") || (pageName == "CAPTIVEMANAGEMENT") || (pageName == "CLAIMSADVOCACY") || (pageName == "PROPERTY")){
				leftDiv.innerHTML = addServicesMenuHTML(pageName);
			}
			else if((pageName == "COMPANY") || (pageName == "NEWS") || (pageName == "COMMUNITY") || (pageName == "PARTNERS") || (pageName == "PEOPLE")){
				leftDiv.innerHTML = addCompanyMenuHTML(pageName);
			}else if(pageName == "CAREERS"){
				leftDiv.innerHTML = "<image src=\"" + imagePath + "/leftBar/careersQuote.gif\" ></image>";
			}else if(pageName == "CONTACT US"){
				leftDiv.innerHTML = "<image src=\"" + imagePath + "/leftBar/contact.gif\"></image>";
			}else if(pageName == "RESULTS"){
				leftDiv.innerHTML = "<image src=\"" + imagePath + "/leftBar/resultsQuote.gif\" ></image>";
			}
		}else
		if((previousPage == "COMPANY") || (previousPage == "NEWS") || (previousPage == "COMMUNITY") || (previousPage == "PARTNERS") || (previousPage == "PEOPLE"))
		{
			if((pageName == "CONTACT US") || (pageName == "CAREERS") || (pageName == "RESULTS")){
				setLeftImages(currentPage);
			}else if((pageName == "OILANDGAS") || (pageName == "SERVICES") || (pageName == "POWERANDUTILITIES") || (pageName == "CLEANENERGY") || (pageName == "RISKIDENTIFICATION") || (pageName == "RISKCONTROL") || (pageName == "INSURANCEPLACEMENT") || (pageName == "EXECUTIVERISK") || (pageName == "CAPTIVEMANAGEMENT") || (pageName == "CLAIMSADVOCACY") || (pageName == "PROPERTY")){
				removeAllLeftContent();
				addServicesMenu(pageName);
			}else if((pageName == "COMPANY")){
				removeAllLeftContent();
				addCompanyMenu(pageName);
			}
		}else 
		if((previousPage == "OILANDGAS") || (previousPage == "SERVICES") ||
			(previousPage == "POWERANDUTILITIES") || (previousPage == "CLEANENERGY")
			|| (previousPage == "RISKIDENTIFICATION") || (previousPage == "RISKCONTROL")
			|| (previousPage == "INSURANCEPLACEMENT") || (previousPage == "EXECUTIVERISK") || (previousPage == "CAPTIVEMANAGEMENT") || (previousPage == "CLAIMSADVOCACY")){
				if((pageName == "CONTACT US") || (pageName == "CAREERS") || (pageName == "RESULTS")){
					setLeftImages(currentPage);
				}else if((pageName == "COMPANY") || (pageName == "NEWS") || (pageName == "COMMUNITY") || (pageName == "PARTNERS") || (pageName == "PEOPLE")){
					removeAllLeftContent();
					addCompanyMenu(pageName);
				}else if((pageName == "SERVICES")){
					removeAllLeftContent();
					addServicesMenu(pageName);
				}
		}else if((previousPage == "CONTACT US") || (previousPage == "CAREERS") || (previousPage == "RESULTS")){
			if(pageName == "SERVICES"){
				removeAllLeftContent();
				addServicesMenu(pageName);
			}else
			if(pageName == "COMPANY"){
				removeAllLeftContent();
				addCompanyMenu(pageName);
			}else{
				setLeftImages(pageName);
			}
		}
		if(pageName == "COMPANY"){
			content = content + changeToCompanyContent();
		}else if(pageName == "PEOPLE"){
			content = content + changeToPeopleContent();
		}else if(pageName == "COMMUNITY"){
			content = content + changeToCommunityContent();
		}else if(pageName == "NEWS"){
			content = content + changeToNewsContent();
		}else if(pageName == "PARTNERS"){
			content = content + changeToPartnersContent();
		}else if(pageName == "CONTACT US"){
			content = content + changeToContactContent();
		}else if(pageName == "CAREERS"){
			content = content + changeToCareersContent();
		}else if(pageName == "RESULTS"){
			content = content + changeToResultsContent();
		}else if(pageName == "SERVICES"){
			content = content + changeToServicesContent();
		}else if(pageName == "OILANDGAS"){
			content = content + changeToOilAndGasContent();
		}else if(pageName == "POWERANDUTILITIES"){
			content = content + changeToPowerContent();
		}else if(pageName == "CLEANENERGY"){
			content = content + changeToCleanContent();
		}else if(pageName == "RISKIDENTIFICATION"){
			content = content + changeToRiskIdContent();
		}else if(pageName == "RISKCONTROL"){
			content = content + changeToRiskControlContent();
		}else if(pageName == "INSURANCEPLACEMENT"){
			content = content + changeToInsuranceContent();
		}else if(pageName == "EXECUTIVERISK"){
			content = content + changeToExecRiskContent();
		}else if(pageName == "CAPTIVEMANAGEMENT"){
			content = content + changeToCaptiveManContent();
		}else if(pageName == "CLAIMSADVOCACY"){
			content = content + changeToClaimsAdContent();
		}else if(pageName == "PROPERTY"){
			content = content + changeToPropertyContent();
		}else{
			content = content + changeToHomeContent();
		}
		
		if(pageName == "HOME"){
			leftDiv.innerHTML = content;
			contentHolder.appendChild(leftDiv);
			contentHolder.appendChild(rightDiv);
		}
		else if((previousPage == "HOME") || (previousPage == "")){
			rightDiv.innerHTML = content;
			contentHolder.appendChild(leftDiv);
			contentHolder.appendChild(rightDiv);
			//var leftMenu = document.createElement('div');
			//leftMenu.setAttribute('id',"companyMenu");
			//var leftContent = document.getElementById('leftContent');
			//leftContent.appendChild(leftMenu);
		}
		else{
			contentHolder = document.getElementById("rightAndCenterContent");
			removeAllChildNodes(contentHolder);
			contentHolder.innerHTML = content;
		}
		previousPage = pageName;
	}
}
function setLeftImages(currentPage)
{
	removeAllLeftContent();
	if(currentPage == "CONTACT US"){
		addLeftImageToLeftContent("contact.gif");
	}else if(currentPage == "RESULTS"){
		addLeftImageToLeftContent("resultsQuote.gif");
	}else if(currentPage == "CAREERS"){
		addLeftImageToLeftContent("careersQuote.gif");
	}
}
function changePeopleContent(currentPage){
	var pageName = currentPage;
	var content = "";
	var paraArray;
	var titleArray;
	var contentHolder = document.getElementById("people");
	
		if(contentHolder.hasChildNodes){
			if(pageName == "berto"){
				titleArray = new Array("Berto Di Manno, B.Comm., CAIB, CRM",
				"Partner",
				"Iridium Risk Services Inc.");
				paraArray = new Array("Berto graduated in 1995 from the Haskayne School of Business at the University of Calgary, majoring in Finance and Insurance Risk Management. Following graduation, Berto started his career with global insurance broker, Marsh, in Calgary. Over his 8&#150;year tenure he specialized in exposure analysis and coverage placement for domestic and international energy clients where he achieved the title of Vice President.  In 2004, Berto left Marsh to re-launch the Calgary branch for global broker Willis, where his contribution and leadership was instrumental in building what became a very successful regional office. In recognition of his efforts, he was appointed as Senior Vice President within Willis&#146; Energy Division.",
				"As a strong proponent of teamwork and mentoring, Berto is excited to be part of a culture that fosters collaboration and personal growth.",
				"Berto has continued his post university education and now holds several certifications including the Canadian Accredited Insurance Broker, Canadian Risk Manager and has completed the Canadian Securities course.");
			}else if(pageName == "bradway"){
				titleArray = new Array("Bradway G. Widing",
				"Executive Vice President",
				"Iridium Clean Energy LLC");
				paraArray = new Array("With a strong background in account management, property reinsurance and captive development, Bradway brings over 25 years of energy industry expertise to Iridium Risk Services. Prior to joining Iridium&#153;, Bradway was a Senior Vice President and Account Executive at William Gallagher Associates (WGA) and a member of WGA&#146;s Energy Practice Group. As a senior member of the WGA Green Group, Bradway was charged with managing start up energy companies including wind power, solar power and biogeneration.",
				"Bradway&#146;s past experience allows him to understand all facets of insurance issues. He was employed for over 15 years as an Account Executive at Johnson & Higgins and Willis Group Holdings, where he managed clients particularly in New York, Houston, and London. Moreover, Bradway inter-acted for more than five years as an Energy Broker with Alexander Howden Group into Lloyd&#146;s of London, the world&#146;s leading insurance market. Recently, he took a four-year hiatus from insurance brokerage to create dot.com educational company that developed educational kits for K&#150;8 home schooling. Bradway had past membership in the National Ocean Industries Association (NOIA) and the British Maritime Charitable Foundation while he worked in London. He has had extensive international experience with clients including PDVSA (an energy corporation owned by the Venezuelan State), Union Pacific Railroad, Royal Dutch Shell, Sunoco, and Nippon Oil (the state oil company of Japan).",
				"Bradway graduated from Boston University with a Bachelors degree in American History and is currently a candidate for an ALM Master&#146;s from Harvard University, June, 2012. He volunteers in Boston as an English and Math tutor with the I Have a Dream program during the school year. Although he is a Boston native, his public service reaches to Philadelphia, where he serves as a side board member for the Arthur Judson Foundation, for the Arts. In his leisure time, Bradway enjoys sailing and golfing. Married 26 years, he also manages the wonderful chaos of four children, and two dogs.");
			}else if(pageName == "geof"){
				titleArray = new Array("Geoffrey Cowling, MChem., ACII",
				"Risk Advisor",
				"Iridium Risk Services Inc.");
				paraArray =new Array("After working in the financial headhunting industry in London, in his native England, Geoff considered his socializing skills sufficiently sharpened to start a career in the insurance industry.  After joining RJ Kiln in 2003, a leading syndicate at Lloyd&#146;s of London, he became a property underwriter writing a varied international book of business including energy, power, chemical and natural resources.",
				"Geoff joined Iridium&#153; in June 2008 alleging a wish for mountains and lakes and strongly denies any coercion by his Canadian wife to emigrate. &#147;When I started planning to come to Calgary I wanted to ensure I worked with dynamic and exceptional people. I had heard good things about Iridium&#153; whilst at Lloyd&#146;s and on reviewing my options, they were the clear choice.&#148;",
				"Geoff graduated from the University of Oxford with a Masters degree in Chemistry. He subsequently became an Associate of the Chartered Insurance Institute and winner of the North American Insurance Examination prize from the Insurance Institute of London.");
				}else if(pageName == "simon"){
				titleArray = new Array("Simon Pringle",
				"Director",
				"Iridium Risk Services Inc.");
				paraArray =new Array("After graduating with Honours from the University of Oxford, Simon joined Seascope in 1982. He was a founding member of London wholesale broker Newman Martin and Buchan when the company was established in 1987 and was appointed a Main Board Director in 1992. For many years he was responsible for the day-to-day running of NMB&#146;s Energy Division. Currently he is the company's Production Coordinator.");
				}else if(pageName == "peter"){
				titleArray = new Array("Peter A. Redmond",
				"Director",
				"Iridium Risk Services Inc.");
				paraArray =new Array("Peter Redmond joined Purves Redmond as President and equity partner in 2003. Previously he was an executive with Marsh Canada for 16 years where he held senior roles, most recently, Vice-Chairman. Throughout his career, his focus has been on design and administration of insurance programs for mid to large sized companies, and he has developed considerable experience with difficult and complex risks and global programs.",
				"Peter has been active with clients from a broad range of sectors, including publishing, printing, steel, power generation, mining, real estate, retail, oil and gas, pipelines, construction, railway, trucking, fertilizer production and environmental.",
				"He enjoys a solid reputation with insurers, insurance buyers and risk managers, bringing with him a wealth of experience, knowledge and leadership skills.");
				}else if(pageName == "robert"){
				titleArray = new Array("Robert G. Purves",
				"Director",
				"Iridium Risk Services Inc.");
				paraArray =new Array("Robert Purves served as President of Purves Redmond&#146;s predecessor company, Robert Purves Limited, from 1979. On January 31, 2003, he became Chairman of Purves Redmond Limited.",
				"Robert&#146;s career includes a strong insurance heritage, focused on property, casualty, management liability and surety lines. He has direct experience in transportation, environmental and waste management industries, as well as non-profit and specialty marine lines.",
				"A respected business leader, Robert is dedicated to many community enhancement events and stewardship developments in his personal life.");
				}else if(pageName == "john"){
				titleArray = new Array("John McLane Jr., CPCU",
				"President",
				"Iridium Clean Energy LLC");
				paraArray = new Array("With over 25 years in the industry, John has worked on all facets of insurance programs, captives, finite risk, self-insurance plans, owner&#150;controlled insurance programs (wrap-ups), and traditional property and casualty brokerage and contractual risk transfer supporting clients in power generation. Prior to joining Iridium, John was a Senior Vice President at William Gallagher Associates (WGA) and was WGA&#146;s Energy Group Practice Leader where he led a team of specialists with Property, Casualty, Professional Liability and Environmental coverage expertise.",
				"Prior to joining WGA, John was the Power and Utility Practice Leader at Marsh, leading a team of 12 brokers responsible for placing over $1 billion in premium volume within more than 100 markets in the US, London and Bermuda. He chaired a Global Steering Committee, which led a network of 550 people delivering risk management, consulting service and solutions to electric, gas and water service companies domiciled around the world. He has extensive experience working with the utility and power generation industries and has been a participant in efforts to start mutuals to address transmission, distribution lines and independent power producers. In February 2006, John was named one of the top five energy insurance brokers in the US by Risk &amp; Insurance Magazine.",
				"As a Partner at Iridium&#153;, John&#146;s specialty focus is on renewable energy and &#147;clean&#148; technology, a professional challenge he embraces. He is excited to support the development of these new technologies, and values the contribution and the impact that this work presents. As a Risk Advisor, John is responsible for setting renewal and marketing strategies, assisting in claim negotiations and establishing service plans on power generation and &#147;clean&#148; energy accounts. He is also responsible for developing relationships with the markets and underwriters active in the energy industry.  John leads Iridium&#146;s corporate representation at the American Wind Energy Association (AWEA),and is an active member of the Society of Chartered Property and Casualty Underwriters (CPCU). Additionally, he serves as the Co-Chair of the Finance Insurance and Risk Management Committee of the Northeast Energy and Commerce Association (NECA).",
				"After graduating from the University of Notre Dame with a Bachelors degree in Mathematics, John spent seven years in the US Navy Nuclear Submarine Program where his interest and knowledge in power generation first began. A Pennsylvania native, John now lives in Brookline, though his heart lies in the Peconic, his vacation spot on Long Island. John is a member of the Southold Historical Society and spends much of his free time studying and collecting American art from artists between 1880 and 1960 who lived in this area.");
			}else if(pageName == "mat"){
				titleArray = new Array("Valerie Cusano, BSc., LL.B.",
				"President",
				"Iridium Risk Services Inc.");
			}else if(pageName == "roger"){
				titleArray = new Array("Roger Swierstra, B.Mgt., CRM",
				"Executive Vice President",
				"Iridium Risk Services Inc.");
				paraArray = new Array("Roger began his insurance career in 1991 working for the marketing department of a property, casualty, life and disability insurer. With a strong desire to move to the brokerage side of the business, he joined global broker, Marsh, in 1995 in Calgary. During his 10 years with the firm, Roger continued to hone his commercial insurance and risk management expertise, attaining the position of Senior Vice President in the Risk Management Division. In this capacity, he led global service teams on complex, multinational accounts. Roger specializes in providing risk solutions to energy-related, chemical, and utility clients.",
				"As the Executive Vice President of Iridium, Roger is especially enthusiastic to be playing a vital role in shaping the company. &#147;Exceeding client expectations has always been my motivator, so when the opportunity arose to create a new organization and culture focused on achieving this objective, I jumped at it.&#148;",
				"Aside from his involvement with large accounts, Roger is active in the development of Iridium&#146;s small cap energy practice. After spending a number of years servicing large, global clients it became quite evident to him that a comparable level of service is not being provided to smaller energy clients by Iridium&#146;s competitors.  As Roger states, &#147;Ironically it&#146;s the smaller companies that need risk management expertise the most, and it is in this area where we can bring considerable value to our clients&#148;.",
				"Roger earned a Bachelor of Management degree in 1991 and holds a Canadian Risk Manager certification."); 
			}else if(pageName == "tasha"){
				titleArray = new Array("Tasha Brown, B.Comm., FCIP, CRM",
				"Partner",
				"Iridium Risk Services Inc.");
				paraArray = new Array("Tasha began her insurance career at a property and casualty insurer, where she attained the role of Senior Underwriter overseeing a team of underwriters with a diverse book of business in the energy, telecommunications and manufacturing sectors. Her subsequent move to global broker Marsh in Calgary allowed Tasha to focus on her passion: working directly with clients to provide insurance solutions in line with their corporate strategy. As an Assistant Vice President in the Risk Management Division at Marsh, Tasha excelled at providing energy clients with risk solutions at a competitive price. In her role, Tasha gained extensive knowledge of a wide variety of policy forms and developed excellent relationships with markets, both nationally and internationally.",
				"As a partner at Iridium&#153;, Tasha believes that the firm is focused on service. &#147;We are continually evolving together with our clients to meet their multifaceted and ever-changing business needs.&#148; With her well&#150;rounded background and focus on the delivery of a consistently high level of service, Tasha is well poised to help lead Iridium Risk Services and its clients into the future.",
				"Tasha graduated with a Finance degree with Distinction at the University of Saskatchewan and subsequently completed the Canadian Securities Course in 2001. Tasha has obtained her Canadian Risk Management Designation at the University of Calgary; she is a Member of the Southern Alberta Insurance Institute and has attained her Fellowship as a Chartered Insurance Professional.");
			}else if(pageName == "val"){
				titleArray = new Array("Valerie Cusano, BSc., LL.B.",
				"President",
				"Iridium Risk Services Inc.");
				paraArray = new Array(
			"After starting her broking career at Marsh as Claims Manager, Val became an Account Executive for oil and gas companies with operations ranging from the oilsands of Northern Alberta, to the heart of Africa and the Middle East. Within this challenging environment, Val became adept at juggling an array of risk management issues and creating new solutions for each of them. This flexibility and focus on client service, wherever it may be required, has equipped Val to take an emerging, independent insurance brokerage into a zone previously out of reach to all but the largest &#145;mega-brokers.&#146;",
			"Val&#146;s willingness to &#145;shake things up&#146; was evident during her tenure as Claims Manager at Marsh, where she took a two-person claims department, and transformed it into an eight-person claims advocacy practice, using her legal skills and industry relationships to facilitate fast, satisfying claims settlements. Val's abilities were similarly engaged following the upheaval in the Directors&#146; and Officers' insurance market post-Enron, enabling her to renew large programs with broad coverage and manageable premium increases, and to explain the complexities of the policies to the Directors and Officers seeking the coverage.",
			"Val embraces the flexibility and creativity permitted by the independent, employee-owned model of Iridium&#153;, and is excited about sharing that vision with Iridium's employees and clients.",
			"Prior to entering the insurance industry, Val completed a Bachelor of Science degree at the University of Alberta and then a law degree at the University of British Columbia, later practicing law in Calgary with an emphasis on insurance litigation.");
			}else if(pageName == "frances"){
				titleArray = new Array("Frances Weeks, CRM",
				"Partner",
				"Iridium Risk Services Inc.");
				paraArray = new Array("Frances started her insurance career in 1990 in the risk management department at Husky Energy. During her 13 years as a Senior Risk Analyst at Husky, Frances gained experience in all areas of risk management, including: the development and execution of insurance programs and placements; risk exposure information development; operational risk analysis; contract analysis; and claims management. In 2004 Frances left Husky to join a global broker as a Senior Risk Analyst with responsibility for providing consultative advice to large multi-national clients.",
				"After gaining invaluable knowledge on the broker side of the business, Frances joined Iridium&#153; in January of 2006. Having worked as both client and broker, she brings a unique perspective to our team. Frances understands the internal challenges faced by risk management departments, which gives her insight when determining the best possible risk solutions for our clients. She is particularly enthusiastic about the flexibility and creativity afforded by the Iridium&#153; model and is excited by the opportunity to work within a client-focused environment.",
				"Frances specializes in providing account services for clients that have a strong focus on risk management.");
			}else {
			}
			content = content + changePeople(titleArray,paraArray);
			var newDiv = document.createElement('div');
			newDiv.setAttribute('id',"people");
			removeAllChildNodes(contentHolder);
			newDiv.innerHTML = content;
			contentHolder.appendChild(newDiv);
		}
}
function changeToPropertyContent(){
	var contentArray = new Array("All Risk Property / Course of Construction (Builders Risk)","Business Interruption / Delay in Startup","Boiler & Machinery Breakdown","General Liability","Pollution Liability","Environmental Cost Cap","Automobile","Aviation / Non-Owned Aviation Liability","Umbrella Liability/Excess Liability","Workers Compensation","Professional Errors and Omissions","Patent Infringement Liability","Cyber Liability","Surety","Political Risk","Trade Credit","Marine Cargo","Terrorism");
	var content = "<p><h1>Property and Casualty</h1></p>";
	content = content + "<p>No matter what risk challenges your company faces, we work with you to seek the most cost-effective risk management solutions.  Whether through risk transfer mechanisms such as the usage of contracts or insurance, or through operational modifications, our primary objective is to lower your total cost of risk.  Oftentimes insurance can be an economical choice.  Although certain industry-specific challenges require industry-specific insurance solutions, many conventional exposures can be addressed with more traditional insurance products.  Our product offering in this area is broad and includes the following coverages:</p>";
	var count = 0;
	while (count < contentArray.length){
		content = content + "<p>" + contentArray[count] + "</p>";
		count = count + 1;
	}
	
	return content;
}
function changeToCompanyContent(){
	var company =  "<div id=\"centerContent\"><p><h1>The Evolution</h1></p>";
		company = company + "<p>After spending many years gaining valuable experience from the large, global brokers, we knew there had to be a better way to serve clients. Our goal was to create a model where the client always comes first, and this conviction is what led us to the creation of Iridium&#153;.</p> ";
	   company = company + " <p>As an employee-owned company, our passion is infectious and shared by all our people. It drives us to think longer, to look deeper and work harder than the competition. We hold each other to a set of high standards that says we refuse to settle for second best. It is the standards of our people that become your standards for receiving consistent, high quality service.</p>";
	    company = company + "<p>We could grow faster but we choose not to. We accept that our company&#146;s growth takes longer as it is more challenging to find that &#147;right&#148; person. </p>";
		company = company + "<p>We wouldn&#146;t have it any other way.</p>";
		company = company + "<p><h1>Our Focus</h1></p>";
		company = company + "<p>Recognizing that no two clients are alike, we customize our services based on your unique requirements rather than defaulting to a generic &#147;one size fits all&#148; service model.  We are not mired in bureaucracy, and our size and flat organizational structure give us the freedom and flexibility to quickly adapt to your ever-evolving service needs.</p>";
		company = company + "<p>We are also not impacted by decisions made by geographically distant head offices driven by foreign events or other priorities.  Our corporate decisions are always made with our clients, employees and community in mind.  And as a privately held firm, we are free from the distraction of analyst and investor pressures, ensuring that you always remain our number one focus.</p>";
		company = company + "<p><h1>Our Global Advantage</h1></p>";
		company = company + "<p>Although we are an independent broker, our reach is global.  We seek the best resources available to satisfy your specific geographic or specialty expertise needs. This differs from larger brokers who are confined to using their own in-house resources, which may not have the required proficiency.  Together with our corporate partners  <a href=\"http://www.purvesredmond.com\"> Purves Redmond Limited</a> in Toronto, Canada and  <a href=\"http://www.nmbinsurance.com\"> Newman Martin and Buchan</a> in London, England, as well as outside firms we engage, we offer you a level of expertise, creativity, and professionalism that is unmatched by our competitors.</p>";
		company = company + "</div>";
		company = company + "<div id=\"rightContent\"><image src=\"" + imagePath + "/rightBar/companyQuote.gif\"></image></div>";
		
	return company;
}
function changeToPowerContent()
{
	var servicesArray = new Array("Power Generation","Electricity Transmission",
	"Distribution and Sales","Water and Wastewater Treatment","Water Supply Systems",
	"Sewage Treatment Plants");
	var specialtyArray = new Array("Power Outage Protection","Carbon Trading Liability","Weather Stabilization","Environmental Liability");
	var riskArray = new Array("Risk Retention Analysis","Contract Review:");
	var riskArray2 = new Array("Operations and Maintenance Agreements","Power Purchase Agreements","Sales Agreements","Long Term Service Agreements","Terminal Operators Agreements","Land Lease Agreements","Owner/Operator Agreements");
	var content = "<p><h1>Power & Utilities</h1></p>";
	content = content + "<p>Although the Power & Utility industry is well established, it remains one of the most dynamic and exciting industry segments. Regulated utilities and independent power producers have experienced some of the most difficult and turbulent years faced by any industry from a financial, regulatory and technology perspective in recent times and it is clear this challenge will continue into the foreseeable future.</p>";
	content = content + "<p>Our team of insurance professionals and advisors work with clients in the power and utility sector to provide insurance and other risk funding and transfer solutions that respond to these challenges. As the industry becomes more competitive, our goal is to help clients achieve a sustainable competitive advantage. To do this, we engage a strategy of continuous improvement in our approach to manage their risks.</p>";
	content = content + "<p>Insurance solutions for the power and utility industry are provided predominantly by the larger mutual insurance companies such as Associated Electric & Gas Insurance Services (AEGIS) and Energy Insurance Mutual (EIM). Being mutual insurers, these organizations enjoy a relationship with their members that is unique in the insurance market. We provide our clients with insight into the conventional insurance marketplace and use a consultative process to create an insurance program that is competitive in the marketplace while still sensitive to the financial obligations faced by members of a mutual insurance company.</p>";
	content = content + "<p>As deregulation and restructuring continues in the power and utility industry, and concerns increase over global warming, emerging technologies are appearing more and more frequently. We work with clients and insurers to successfully address the risks inherent in this process.</p>";
	content = content + "<p>Our industry specialties include the following:</p>";
	content = content + listArrayItems(servicesArray);
	content = content + "<div id=\"resultRow\">";
	content = content + "<div id=\"smallColumns\">";
	content = content + "<p><br/></p>";
	content = content + "<p><b>Specialty Coverages</b></p>";
	content = content + listArrayItems(specialtyArray);
	content = content + "</div>";
	content = content + "<div id=\"smallColumns\">";
	content = content + "<p><br/></p>";
	content = content + "<p><b>Specialty Risk Services</b></p>";
	content = content + listArrayItems(riskArray);
	content = content + listArrayItemsIndent(riskArray2);
	content = content + "<p class=\"noMarginBottom\">Premium Allocation Models</p>";
	content = content + "</div>";
	content = content + "</div>";
	return content;
}
function changeToInsuranceContent(){
	var content = "<div id=\"centerContent\">";
	content = content + "<p><h1>Insurance Placement </h1></p>";
	content = content + "<p>We have excellent, long&#150;standing relationships with all major domestic energy insurers including the key London and European&#150;based insurers and reinsurers. Our global reach allows us to extensively market your insurance program so no matter how large or complex your risks, we can offer you the most competitive terms available in the marketplace. Unlike many of our competitors, we are free to access key geographic markets directly (such as Bermuda) instead of being forced to deal though an in-house intermediary as may be mandated by the larger broker firms. Middleman costs and &#145;market-friendly&#146; biases are thereby eliminated, protecting both your interests and your bottom line.</p>";
	content = content + "<p>As an independent retail broker, we have access to some of the most talented independent, foreign-domiciled firms, which gives you a distinct advantage when the placement of your coverage requires the use of an offshore wholesale broker. In contrast to the larger broker families where business is simply fed to their wholesale arms, the firms we engage must win your business based on superior expertise and services. Is there a quality difference? Just ask our clients.</p>";
	content = content + "<p></p>";
	content = content + "</div>";
	content = content + "<div id=\"rightContent\">";
	content = content + addFlashHTML("images/rightBar/quoteBox2.swf",255,274,"quoteBox2");
	content = content + "</div>";
	return content;
}
function changeToClaimsAdContent(){
	var content = "<div id=\"centerContent\">";
	content = content + "<p><h1>Claims Advocacy</h1></p>";
	content = content + "<p>The true measure of a successful insurance program is its responsiveness to losses falling within the coverage it is intended to provide. Considering the fundamental importance of claims management services to a client, brokers have not traditionally been perceived as focusing their resources and talents on the pursuit of claims recoveries. Many brokers do not evaluate insurance markets based on their ability and willingness to pay claims fairly and promptly, confining their analysis to the markets&#146; capacity and pricing profile. The inevitable impact of this approach means that often insurance programs are not achieving the one goal they actually intended to provide &#150; the transfer of risk and prompt payment of losses.</p>";
	content = content + "<p>We take an alternative approach to claims advocacy, departing from the traditional role of the claims broker as a strictly reactive, administrative function, and instead provide you with creative, aggressive claims solutions. We are your staunchest advocate when dealing with claims adjusters, insurers and the experts they engage, to ensure you get the maximum return on your insurance dollar.</p>";
	content = content + "</div>";
	content = content + "<div id=\"rightContent\">";
	content = content + addFlashHTML("images/rightBar/quoteBox3.swf",255,340,"quoteBox3");
	content = content + "</div>";
	return content;
}
function changeToCaptiveManContent(){
	var captiveArray = new Array("Strategic planning and development",
	"Development of underwriting guidelines and protocols",
	"Claims Handling protocols",
	"Identification of underwriting opportunities",
	"Creation of policies",
	"Issuance of documentation",
	"Design of reinsurance and risk transfer structures","Captive feasibility studies");
	var content = "<p><h1>Captive Management</h1></p>";
	content = content + "<p>Through our Barbados domiciled company, Palm Captive Services Limited, we can provide you with a full range of captive management services as required both domestically and in Barbados (the domicile most commonly used by Canadian companies for their captives). Our services include the following:</p>";
	var count = 0;
	while(count < captiveArray.length){
		content = content + "<p>" + captiveArray[count] + "</p>";
		count = count + 1;
	}
	return content;
}
function changePeople(titleArray,paraArray){
	var content = "";
	var count = 0;
	while(count < titleArray.length){
		if(count == 0){
			content = content + "<p class=\"colored\">" + titleArray[count] + "</p>";
		}
		else{
			content = content + "<p class=\"noMarginBottom\">" + titleArray[count] + "</p>";
		}
		count = count + 1;
	}
	content = content + "<br/>";
	count = 0;
	while(count < paraArray.length){
		content = content + "<p>" + paraArray[count] + "</p>";
		count = count + 1;
	}
	return content;
}
function changeToExecRiskContent(){
	var riskArray = new Array("D&O Side A Difference in Conditions","Independent Directors&#146 Liability","Fiduciary Liability","Employment Practices Liability","Crime / Fidelity","Kidnap & Ransom");
	var content = "<div id=\"centerContent\">";
	content = content + "<p><h1>Executive Risks</h1></p>";
	content = content + "<p>Directors and officers now serve at greater personal risk than at any time before. Newly enacted laws, judicial interpretations and public perceptions have imposed increasing levels of responsibility on one&#146;s conduct and standard of care. With the corresponding increase in the frequency and severity of claims, the ability of a broker to carefully advise its clients on the ever&#150;evolving executive risk issues has become of critical importance.</p>";
	content = content + "<p>Not only do we decipher the complex coverages of Director and Officer Liability policies and explain to our clients how the latest coverage developments impact their directors and officers personally, we also help our clients communicate these messages internally. We routinely assist our clients with the preparation and delivery of D&O Liability board memos and presentations to their boards of directors and management committees on a variety of topics including analysis of limits, key coverage issues, developing legislation, corporate governance, insurer financial stability and claims trends.</p>";
	content = content + "<p>In addition to conventional Directors&#146 & Officers&#146 Liability, we offer the following Executive Risk products:</p>";
	content = content + listArrayItemsWithSpace(riskArray);
	content = content + "</div>";
	content = content + "</div>";
	content = content + "<div id=\"rightContent\"><image src=\"" + imagePath + "/rightBar/execRisksQuote.gif\"></image></div>";
	return content;
}
function changeToCleanContent()
{
	var specialtyArray = new Array("Environmental Liability","Power Outage Protection",
	"Carbon Trading Liability","Weather Stabilization");
	var riskArray = new Array("Risk Retention Analysis","Contract Review&#58;");
	var riskArray2 = new Array("Operations and Maintenance Agreements","Power Purchase Agreements",
	"Sales Agreements","Long Term Service Agreements","Terminal Operators Agreements",
	"Land Lease Agreements","Owner/Operator Agreements");
	var content = "<div id=\"centerContent\"><div id=\"centerRow\"><p><h1>Clean Energy</h1></p>";
	content = content + "<p>Iridium Clean Energy (ICE)&#153; is at the forefront of advising companies with clean energy operations on risk and insurance issues that affect operational success. Our people have a proven track record in delivering value to renewable energy organizations across North America and worldwide. Our clean energy experience and structured client insurance programs include bio energy developers, ethanol producers, solar panel manufacturers, wind farms, run-of-river hydro, waste heat recovery, water purification plants, as well as manufacturers of electronics for the alternative energy, and transmission grid support. Through our knowledge, ability to innovate tailored solutions, and years of experience in negotiating terms with the insurance community, we save our clients money, boost their effectiveness in managing risk, and help them become better managed organizations.</p>";
	content = content + "<p>As with many emerging technologies, risks can range from a fire causing a loss in a supply chain to a lawsuit arising out of a contractual obligation. But for clean energy development there are lesser&#150;known risks facing this class of business. Challenges include quantifying and addressing complex business interruption exposures, intellectual property risks, carbon trading liability and power outage exposures. Studies show that risk decreases with experience. Using our expert industry knowledge, we help you better understand your unique exposures and how to effectively protect your company.</p>";
	content = content + "<p>To be an effective risk advisor to our clients, staying current in such a dynamic industry is vital.  We routinely interact with organizations such as the New England Clean Energy Council (NECEC), a community of clean energy stakeholders, and a world-class cluster of clean energy companies.  We are also an active member of the American Wind Energy Association (AWEA) which is the national trade association for the wind energy industry, and participate in forum discussions with global environmental clean energy association CERES.</p>";
	content = content + "<p>Some of the industry-unique coverages and services we offer to companies with clean energy operations include the following:</p></div>";
	content = content + "<div id=\"centerRow\">";
	content = content + "<div id=\"halfCenter\">";
	content = content + "<p></p>";
	content = content + "<p><b>Specialty Coverages</b></p>";
	content = content + listArrayItems(specialtyArray);
	content = content + "</div>";
	content = content + "<div id=\"halfCenter\">";
	content = content + "<p></p>";
	content = content + "<p><b>Specialty Risk Services</b></p>";
	content = content + listArrayItems(riskArray);
	content = content + listArrayItemsIndent(riskArray2);
	content = content + "<p class=\"noMarginBottom\">Premiun Allocation Models</p>";
	content = content + "</div>";
	content = content + "</div>";
	content = content + "</div>";
	content = content + "<div id=\"ice\"><div id=\"iceClick\">";
	content = content + "<a href=\"" + pdfPath + "/carbonOffsets.pdf\"><p>Trading Liability Cover</p></a>";
	content = content + "<a href=\"" + pdfPath + "/renewableEnergy.pdf\"><p>Carbon Offsets Q&amp;A</p></a>";
	content = content + "<a href=\"" + pdfPath + "/PowerPriceProtection.pdf\"><p>Power Price Protection</p></a>";
	content = content + "<a href=\"" + pdfPath + "/ImpactOfWeather.pdf\"><p>Impact Of Weather</p></a>";
	content = content + "<a href=\"" + pdfPath + "/ClimateWire.pdf\"><p>ClimateWire Article</p></a></div></div>";
	return content;
}
function listArrayItems(theArray){
	var content = "";
	var count = 0;
	while(count < theArray.length){
		content = content + "<p class=\"noMarginBottom\">" + theArray[count] + "</p>";
		count++;
	}
	return content;
}
function listArrayItemsIndent(theArray){
	var content = "";
	var count = 0;
	while(count < theArray.length){
		content = content + "<p class=\"leftMargin\">" + theArray[count] + "</p>";
		count++;
	}
	return content;
}
function listArrayItemsWithSpace(theArray){
	var content = "";
	var count = 0;
	while(count < theArray.length){
		content = content + "<p>" + theArray[count] + "</p>";
		count++;
	}
	return content;
}
/////////////////
function changeToOilAndGasContent(){
	var servicesArray = new Array("Oil & Gas Producers","Oilfield Service Contractors","Chemical / Petrochemical Manufacturing",
	"Energy-related Manufacturing and Construction","Midstream and Pipeline Infrastructure");
	var specialtyArray = new Array("Operators Extra Expense (Control of Well)",
	"Contractors Equipment","Sudden & Accidental Pollution Liability",
	"Pollution Legal Liability","Downhole Equipment");
	var riskArray2 = new Array("Purchase Sale Agreements","Joint Venture Operating Agreements",
	"Drilling Contracts","Land Lease Agreements","Master Service Agreements");
	var riskArray = new Array("Risk Retention Analysis","Contract Review:");
	var content = "<p><h1>Oil & Gas</h1></p>";
	content = content + "<p>The Oil and Gas sector continues to be, for companies, a challenging environment in which to operate. In an industry faced with technical challenges, commodity price volatility and regulatory change, the development and execution of an intelligent risk management program is essential to a company&#146;s success.  Providing risk management and insurance expertise to the Oil & Gas sector is our business. Our people have an in-depth understanding of your industry segment and how to best address your exposures so that you can sustain your competitive advantage when things go wrong and you suffer a loss.</p>";
	content = content + "<p>Experience has shown us that the only constant in the Oil & Gas sector is change. We work hard to stay abreast of our clients&#146; growing business activities and continuously assist our clients in indentifying, evaluating and addressing their evolving exposures. Whether due to an acquisition, or the introduction of a new product line or service offering, we are there to help you make the right choices with respect to managing your risks.</p>";
	content = content + "<p>Our Oil & Gas specialties include the following:</p>";
	content = content + listArrayItems(servicesArray);
	content = content + "<div id=\"resultRow\">";
	content = content + "<div id=\"smallColumns\">";
	content = content + "<p><br/></p>";
	content = content + "<p><b>Specialty Coverages</b></p>";
	content = content + listArrayItems(specialtyArray);
	content = content + "</div>";
	content = content + "<div id=\"smallColumns\">";
	content = content + "<p><br/></p>";
	content = content + "<p><b>Specialty Risk Services</b></p>";
	content = content + listArrayItems(riskArray);
	content = content + listArrayItemsIndent(riskArray2);
	content = content + "<p class=\"noMarginBottom\">Premium Allocation Models</p>";
	content = content + "</div>";
	content = content + "</div>";
	return content;
}
//////////////////////////
function changeToCareersContent(){
	var careers = "<div id=\"centerContent\">";
	careers = careers + "<p><h1>Careers</h1></p>";
	careers = careers +	"<p>Iridium&#153 is a high performance organization that attracts positive, team-oriented people who want to learn and grow every day. In many businesses, the company values are nothing more than a plaque on a wall.  At Iridium, they define who we are and how we live. In case you are wondering, you&#146;ll notice our core values just off to the right.</p>";
	careers = careers +	"<p>Our office environment is unique and inviting. We get excited by helping our clients. We love to laugh. We&#146;re strong on purpose, flexibility, appreciation and personal potential. Our goal is to ensure that you have a high quality of life, and the opportunity to achieve financial success as you contribute to the financial success of the company.</p>";
	careers = careers +	"<p>What we offer is much more than a job. It&#146;s a lifestyle.</p>";
	careers = careers +	"<p>Please submit resumes to  <a href=\"mailto:careers@iridiumrisk.com\"> careers@iridiumrisk.com</a>.  All submissions will be treated confidentially.</p></div>";
	careers = careers + "<div id=\"values\"><image src=\"" + imagePath + "/leftBar/values.jpg\"></image></div>";
	return careers;
}
function changeToRiskControlContent(){
	var riskArray = new Array("Facility risk control / insurance surveys and coordination with insurers ",
	"Cost-benefit / return on investment analysis studies of fire protection or risk control alternatives",
	"Loss / retention analysis using Monte Carlo risk methods",
	"Enterprise risk management exposure analysis and risk mapping",
	"Third party liability limits studies",
	"Maximum Foreseeable Loss (MFL) / Probable Maximum Loss (PML) studies",
	"Contingent business interruption studies",
	"New project process safety design review",
	"Acquisition due diligence facility surveys",
	"Workplace and fleet safety");
	var content ="<p><h1>Risk Control Engineering</h1></p>";
	content = content + "<p>Protecting your corporate assets starts with a thoughtful and practical loss prevention program. We provide cost-effective advice and information pertaining to the management of your risks, supported by quantitative risk analysis, recommended good practice, codes and standards, case histories and sound judgment. Some of the services we offer are as follows:</p>";
	var count = 0;
	while(count < riskArray.length){
		content = content + "<p>" + riskArray[count] + "</p>";
		count = count + 1;
	}
	return content;
}
///////////////////
function changeToRiskIdContent(){
	var content = "<div id=\"centerContent\">";
	content = content + "<p><h1>Risk Identification & Evaluation</h1></p>";
	content = content + "<p>We will work with you diligently to assess your risks and insurance requirements. This means getting involved in the intricate operational, contractual and financial details of your business. The completion of this process will lead to the ultimate goal of risk management, which is to reduce your organization's cost of risk, thereby increasing your profits and earnings per share.</p>";
	content = content + "<p>With our in&#150;depth industry knowledge we know how to speak your language. This allows us to engage in meaningful dialogue with your financial, operational, and legal personnel regarding their specific risk concerns, a process so critical to understanding your firm&#146;s overall exposure profile.  Only once this detailed analysis is completed will we begin the process of building an insurance solution that best suits your needs.</p>";
	content = content + "</div>";
	content = content + "<div id=\"rightContent\">";
	content = content + addFlashHTML("images/rightBar/quoteBox4.swf",255,340,"quoteBox4");
	content = content + "</div>";
	return content;
}
//////////////////////
function changeToPartnersContent(){
	var content = "<div id=\"resultRow\"><p><h1>Partners</h1></p>";
	content = content + "<div id=\"centerContent\">";
	content = content + "<p class=\"colored\">Purves Redmond Limited</p>";
	content = content + "<p>Purves Redmond Limited is a Canadian-owned, independent insurance broker, headquartered in Toronto and serving the Canadian market. Purves Redmond provides risk management advisory and insurance brokerage services to a broad spectrum of industries with a specialty in law firms, financial institutions, transportation and waste management risks.</p>";
	content = content + "<p><a href=\"http://www.purvesredmond.com\">www.purvesredmond.com</a></p>";
	content = content + "</div>";
	content = content + "<div id=\"rightContent\">";
	content = content + "<div id=\"resultsLogo\"><image class=\"busLogo\" src=\"" + imagePath +"/logo/PRLogo.gif" + "\"></image></div>"
	content = content + "</div>";
	content = content + "</div>";
	content = content + "<div id=\"resultRow\">";
	content = content + "<image src=\"" + imagePath + "/lines/rightAndCenterLine.gif\"></image><br/><br/>";
	content = content + "<div id=\"centerContent\">";
	content = content + "<p class=\"colored\">Newman Martin and Buchan Limited</p>";
	content = content + "<p>NMB is a leading independent wholesale Lloyd&#146;s insurance and reinsurance broker, specializing in energy risks. Since its start in 1987, NMB have grown organically and expanded into the marine, non&#150;marine and reinsurance disciplines. Headquartered in London, England, NMB have established a reputation for expertise and service delivery in its chosen specialist fields.</p>";
	content = content + "<p><a href=\"http://www.nmbinsurance.com\">www.nmbinsurance.com</a></p>";
	content = content + "</div>";
	content = content + "<div id=\"rightContent\">";
	content = content + "<div id=\"resultsLogo\"><image class=\"busLogo\" src=\"" + imagePath +"/logo/NMBLogo.gif" + "\"></image></div>"
	content = content + "</div>";
	content = content + "</div>";
	return content;
}
function changeToCommunityContent(){
 var logoArray = new Array("interfaith.gif","mustardSeed.gif","unitedWay.gif","YWCA.gif","blankPlace.gif");
	var content = "<div id=\"communityRow\"><p><h1>Community</h1></p>";
	content = content + "<p>Giving back to the community &#150; whether it involves donations, goods and services or volunteer efforts,it all plays an important role in the way Iridium&#153; does business. Iridium&#153; is proud to support the following non-profit organizations:</p><br/><br/></div>";
	var count = 0;
	content = content + "<div id=\"communityRow\"><div id=\"communityLogo\"><image src=\"" + imagePath + "/communityLogo/" + logoArray[0] + "\"></div>";
	content = content + "<div id=\"communityLogo\"><image src=\"" + imagePath + "/communityLogo/" + logoArray[1] + "\"></div>";
	content = content + "<div id=\"communityLogo\"><image src=\"" + imagePath + "/communityLogo/" + logoArray[3] + "\"></div>";
	content = content + "</div>";
	content = content + "<div id=\"communityRow\"><div id=\"communityLogo\"><image src=\"" + imagePath + "/communityLogo/" + logoArray[4] + "\"></div>";
	content = content + "<div id=\"communityLogo\"><image src=\"" + imagePath + "/communityLogo/" + logoArray[2] + "\"></div>";
        content = content + "<div id=\"communityRow\"><image src=\"" + imagePath + "/communityLogo/cancer.JPG" + "\"></div>";
	content = content + "<div id=\"communityRow\"><h2><b>NEWS:</b> Ride To Conquer Cancer</h2><p>The Ride to Conquer Cancer is a 200km cycle ride to benefit the Alberta Cancer Foundation.</p>";
	content = content + "<p>It takes two days and consists of cycling along the Rockies south of Calgary. 2009 was the inaugural ride for Alberta with 1,742 people participating raising over $6.9 million! Monies raised through The Ride are used to support breakthrough research and the discovery of new cancer therapies to directly benefit patients at the Cross Cancer Institute, the Tom Baker Cancer Centre and 15 other cancer centres across the province.</p>";
	content = content + "<p>Brent and Geoff were one of only four tandems and the only ones with fake moustaches!</p> </div>";
	return content;
}
function changeToHomeContent(){
	var content = "<div id=\"leftAndCenterRow\">";
	content = content + "<p><h1>The Evolution of Risk Services</h1></p>";
	content = content + "<p class=\"bigger\">Iridium&#153; provides professional risk management advisory and insurance broking services to the domestic and international energy sector."; 
	content = content + " Our in-depth industry expertise and unique business model enable us to offer a level of service and understanding that is unmatched in our industry.</p>";
	content = content + "</div>";
	content = content + "<div id=\"leftAndCenterRowSpacer\">";
	content = content + "</div>";
	content = content + "<div id=\"homeLinks\">";
	content = content + "<image src=\"" + imagePath + "/lines/leftAndCenterLine.gif\"></image><br></br>";
	content = content + "<image src=\"" + imagePath + "/links/homeLink.jpg\" usemap=\"#homeLink.jpg\" border=\"0\"></image>";
	content = content + "<map name=\"homeLink.jpg\">";
	content = content + "<area shape=\"rect\" coords=\"0,2,206,72\" href=\"" + rootPath + "?page=NEWS\">";
	content = content + "<area shape=\"rect\" coords=\"206,2,449,70\" href=\"" + rootPath + "?page=CLEANENERGY\">";
	content = content + "<area shape=\"rect\" coords=\"451,1,606,72\" href=\"" + rootPath + "?page=CONTACT US\">";
	content = content + "</map>";
	content = content + "</div>";
	
	return content;
}
function changeToServicesContent(){
	var content = "<div id=\"centerContent\">";
	content = content + "<p><h1>Our Service Philosophy</h1></p>";
	content = content + "<p>Our clients are often initially surprised by our readiness to adjust our services to their specific risk management and insurance requirements.  We don&#146;t force our clients to adapt to a &#147;cookie cutter&#148; service model. Instead, we recognize that every client has unique needs and deserves a uniquely tailored service solution.</p> ";
	content = content + "<p>And unlike many brokers, we are service driven, not sales driven.  Our business model ensures our employees stay focused on establishing long-term client relationships by providing superior service rather than focusing on that next new business win. Our efficient operating structure also allows us to liberate a much greater portion of our employees&#146; time towards client servicing.</p>";
	content = content + "<p>Does our model work?  We think so. Most of our new clients come to us through referrals from our existing clients, which we believe is a solid testament to our capabilities and strong service focus.</p>";
	content = content + "</div>";
	content = content + "<div id=\"rightContent\"><image src=\"" + imagePath + "/rightBar/servicesQuote.gif\"></image></div>";
	return content;
}

function changeToContactContent(){
	var content = "<div id=\"canada\">";
	content = content + "<div id=\"canadaText\">";
	content = content + "<p><h1>Canada</h1></p>";
	content = content + "<p class=\"noMarginBottom\">1100, Bow Valley Square 3</p>";
	content = content + "<p class=\"noMarginBottom\">255 - 5th Avenue SW</p>";
	content = content + "<p class=\"noMarginBottom\">Calgary, AB</p>";
	content = content + "<p>T2P 3G6</p>";
	content = content + "<p class=\"noMarginBottom\"><b>Tel: </b>403.263.9654</p>";
	content = content + "<p><b>Fax: </b>403.263.9656</p>";
	content = content + "<p><a href=\"mailto:Info@iridiumrisk.com\">info@iridiumrisk.com</a></p>";
	content = content + "</div>";
	content = content + "</div>";
	content = content + "<div id=\"unitedStates\">";
	content = content + "<div id=\"canadaText\">";
	
	content = content + "</div>";
	content = content + "</div>";
	return content;
}
function changeToPeopleContent(){
	var content = "<div id=\"rightAndCenterContent\">";
	content = content + "<div id=\"peopleRow\">";
	content = content + "<p><h1>People</h1></p>";
	content = content + "<p>Let&#146;s face it, our business is all about the people.  At Iridium&#153;, we have carefully assembled a team of experienced, like-minded people who are driven towards a common goal.  People who understand the importance of innovation, teamwork, and the prompt delivery of service to our clients.</p>";
	content = content + addPeopleMenuHTML();
	content = content + "</div>";
	content = content + "<div id=\"people\">";
	content = content + "</div>";
	content = content + "</div>";
	content = content + "</div>";
	return content;
}
function changeToNewsContent(){
	var count = 0; 
	var pdfArray = new Array("ClimateWire.pdf","apointingBradway.pdf","cleanEnergy.pdf","WellsFargoNewsRelease.pdf","DownholeToolProgram.pdf","bertoDiMano.pdf","underwriters.pdf","palmCaptiveLimited.pdf","purves.pdf");
	var newsArray = new Array(new Array("March 16, 2009","ICE in the news � ClimateWire: Insurers find ways to help renewable energy sellers face risks"),
	 new Array("January 14, 2009","Iridium Clean Energy appoints Bradway Widing as Executive Vice President and Matthew Rist as Risk Technician"),new Array("January 14, 2009","Iridium announces creation of Iridium Clean Energy"),
	new Array("July 23, 2008",
	"Iridium Risk Services announces membership in the Wells Fargo Global Broker Network"),
	new Array("June 4, 2008","Iridium launches Downhole Tool program with Transpac Managers"),
	new Array("December 15, 2007","Berto Di Manno joins Iridium Risk Services Inc. as Senior Vice President"),
	new Array("September 2007","Publication release: Canadian Underwriter, Directors&#146; & Officers&#146; Liability, &#147;Opening Doors to More Coverage&#148;, Val Cusano, Deb Laferierre, Sept 2007 edition"),
	new Array("December 1, 2006","Iridium announces formation of new Captive Management company, Palm Captive Services Limited"),
	new Array("March 1, 2006","Purves Redmond NMB Ltd. changes name to Iridium Risk Services Inc."));
	
	var content = "<p><h1>News</h1></p>";
	while(count < newsArray.length){
		var count2 = 0;
		var newsItem = newsArray[count];
		while(count2 < newsItem.length){
			if(count2 == 0){
				content = content + "<p class=\"colored\"><a href=\"" + pdfPath + "/" + pdfArray[count] + "\" target=\"_blank\" >" 
				+ newsItem[count2] + "</a></p>";
			}
			else{
				content = content + "<p>" + newsItem[count2] + "</p>";
			}
			count2 = count2 + 1;
		}
		count = count + 1;
	}
				
	return content;
}
function changeToResultsContent(){
var count = 0;
var comLogoArray = new Array("nexen.gif","nal.gif","hse.gif","canexus.gif","daylightLogo.jpg","propakLogo.jpg","western.gif","openRange.gif","breaker.gif","bigCountry.gif","caltex.gif","ironHand.gif","seaview.gif","triton.gif","profound.gif");
var comParaArray = new Array(new Array("Nexen expects leading edge strategic advice, timely service, rapid response, budgets made and kept, policy wordings prior to binding, superb claims support and meaningful benchmarking. We are impressed that the Iridium group can deliver excellence in all of these areas."),
									   new Array("We at NAL have been extremely pleased with the process and the results related to our insurance renewal and the change of brokers. Iridium has listened to our needs, been extremely customer focused and has helped us understand the insurance market and the individuals involved while bringing the Insurers to a greater understanding of our company, our strengths and allowing us to showcase the commitment we have to safety, regulatory compliance and strong operating practices. Although our relationship with Iridium is new, we have no reason to believe their commitment to service will waiver, and that our relationship will remain strong for years to come. It is without hesitation that we recommend Iridium to you."),
									   new Array("The team &#45; and it really is a team &#45; at Iridium has exceeded our expectations with respect to our risk management and insurance needs.  Their in&#45;depth probing of our business and ability to canvas the insurance markets has resulted in a significantly improved insurance program in terms of both coverage and cost.  Iridium has done an exceptional job of accurately portraying our unique exposures to the insurance marketplace ensuring that our coverage matches our risks, which is very important to us.  The advice and timely responses have been excellent &#45; by everyone.  Iridium is one of the best choices we have made."),
new Array("We chose Iridium because of the expertise of its people, intimate knowledge of key insurance markets, their ability to understand the risks inherent in our business and how to best use insurance to mitigate them. With limited in&#45;house risk management expertise we require and expect a very high level of service. Iridium hasn&#39;t let us down. We have been consistently treated like we are their most important client."),
new Array("Iridium spent the time to really get to know our operations and strategic plan which resulted in an insurance program design that accurately reflects our risk profile. This, in combination with aggressively marketing Daylight to insurers, allowed us to stretch our insurance dollars much further. We look forward to partnering with Iridium on an on&#45;going basis as we execute our strategic plan."),
new Array("The Iridium team is very enthusiastic, knowledgeable and professional, and consistently provides timely and relevant advice regarding insurance and risk management issues that are of importance to Propak. Iridium generated underwriter interest in our account through a strategic marketing exercise that ultimately resulted in policy coverage improvements alongside a reduction in premium. Iridium analyzed our insurance program and policies, identifying gaps in coverage and wording improvements and proposing and placing new policies, ultimately optimizing our insurance program.", "Propak is pleased to be working with such a talented and committed team at Iridium.  I wish we had made the change years ago!"),
new Array("As a client without a dedicated Risk Manager, we outsource many of the traditional risk management functions to our insurance broker and we rely on them to provide us with a great deal more than an insurance program. We require expert advice on risk management issues and timely delivery of solutions for all of our risk needs; whether they are advice on acquisitions, construction projects, claims, or any of the other wide variety of issues facing a growing energy company today. The people at Iridium truly understand our business and have become a valued partner in assisting us to effectively manage our risks."),
new Array("Being able to utilize the skills of an industry expert to help us identify our exposures, evaluate the need for insurance solutions and help us in managing the relationships with our insurance providers is invaluable for us. My ability to manage our insurance program is greatly enhanced with the expertise of the Iridium team at my disposal."),
new Array("We had previously dealt with larger brokers exclusively, but in the past few years we were unhappy with the level of service we were receiving. Iridium routinely takes the time to meet with us to carefully review and address our evolving exposures. Iridium&#39;s employees are very experienced and are well versed at explaining coverage nuances at an operational, executive and board level, which gives us confidence that we have appropriate insurance protection. Their knowledge of the marketplace is impressive, ensuring that we receive the most competitive terms available. With Iridium we believe that we receive excellent value and great service."),
new Array("With over 1,000 employees and 900 pieces of equipment and vehicles managing our insurance was a full time job for two relatively senior employees. The Iridium team took the time to understand our business. They spoke with staff at all levels of our company including dispatchers, equipment managers and individuals who process our claims. Through this process they were able to recognize the excessively administrative demands of our existing insurance program and proposed a new structure that reduced our insurance cost by approximately one third and, more importantly, eliminated 90% of our administrative headaches.","In the current labour market reducing our administrative needs has been a huge benefit. We can now have talented people providing value to the organization, rather than processing insurance forms and we can deploy new staff and equipment faster. Iridium delivered what they promised; better pricing and more importantly a far more efficient and manageable insurance regime."),
new Array("We engaged Iridium at the same time that we were completing a large asset acquisition and a corporate merger. In order to identify our exposures, the team at Iridium invested the time required to understand our existing business and the new acquisitions. In addition, they worked closely with our staff to compile the data requested by our insurance providers. Overall, I am extremely pleased with the exceptional level of service provided by Iridium and value them as a trusted business partner."),
 new Array("Ironhand does not have the benefit of an in&#45;house risk manager on staff so we depend on the expertise provided by Iridium to ensure proper coverage and competitive pricing. I would not hesitate in recommending Iridium to any contractor that is faced with an ever increasing complexity of coverages and lacks the expertise to evaluate each proposal. We regard Iridium as our Risk Management department."),
new Array("At Seaview, we have used the technical expertise of Iridium as a Risk Management Partner/Consultant and have found their level of knowledge and forward thinking to be of great assistance. Since our inception we have closed numerous acquisitions and the responsiveness of Iridium has been greatly appreciated. From assessing the properties and risk profiles of the acquired assets to revisiting our entire portfolio on a routine basis, we have great confidence that we have adequate and appropriate insurance."),
new Array("We appointed Iridium based on their service model, meticulous attention to detail, and thorough understanding of Triton&#39;s operational exposures. I am pleased to advise that since the appointment, the caliber of service we have received has been as expected &#45; exceptional! The staff at Iridium is very professional, client&#45;focused and they always keep our best interests in mind. Iridium has set a service standard that is second to none. I highly recommend them."),
new Array("As explorers for oil and gas, unforeseen problems can happen in our business. Iridium&#146;s staff combines knowledge, diligence and care to ensure our company is well protected. In their uniquely proactive approach, Iridium invests the time to know our business as well as we do, and they have taught me more about insurance than I thought I would need to know."));
var comBusTitleArray = new Array("Nexen Inc. ","NAL Resources","HSE Integrated Ltd.","Canexus Income Fund","Daylight Resources Trust","Propak Systems Ltd.",
"Western Oil Sands Inc.","Open Range Energy Corp.","Breaker Energy Ltd.",
"Big Country Energy Services LP","Caltex Energy Inc.","Ironhand Drilling Inc.","Seaview Energy Inc.","Triton Energy Corp.",
"Profound Energy Inc.");
var comTitleArray = new Array(new Array("Mark Roberton","Director, Risk Management"),
										new Array("Keith Steeves","Chief Financial Officer, Vice President Finance"),
										new Array("W. H. (Bill) Higgins, CA","Senior Manager, Tax &#38; Business Analysis"),
new Array("Rich McLellan","Senior Vice President &#150; Finance &#38; Chief Financial Officer"),
new Array("Steve Horner, CA","VP Business Services"),
new Array("Barry C. Taylor, C.A.","VP Finance and Administration"),
new Array("David A. Dyck, CA","Formerly Senior Vice President Finance and Chief Financial Officer"),
new Array("Dave Belcher, CMA, CFD","Treasurer"),
new Array("Max Lof, CA, MBA","Vice President Finance and Chief Financial Officer"),
new Array("Trevor Mitzel CA, CFA","Chief Financial Officer"),
new Array("Brent R. Bracken, CA","Vice President, Finance &#38; CFO"),
new Array("Neil Belcher","CFO, VP Finance"),
new Array("Stephanie A. Bunch, CA","Vice President, Finance &#38; CFO"),
new Array("Dean J. Schultz, CA","Vice President Finance &#38; CFO"),
new Array("Evelyn Burnett, CMA","Vice President Finance and CFO"));

	var content = "<div id=\"resultRow\">";
	content = content + "<p><h1>Client Comments</h1></p>";
	content = content + "<p>We believe that the relationship between a broker and its client should be one of mutual appreciation.  Our clients very much appreciate the value we bring to their organizations, and we are equally appreciative of how our clients contribute to our own firm&#146s success.  Being a smaller, independent broker, we never forget who keeps our lights on.  The connection we have with our clients is direct; we succeed as we help our clients succeed.</p>";
	content = content + "<p>Please take a few moments to review the following comments from our clients regarding their experience with our firm.</p>";

	content = content + "</div>";
	content = content + createResults(comLogoArray,comTitleArray,comBusTitleArray,comParaArray);
	var claimsBusTitleArray = new Array("Nexen Inc.","Result Energy Inc.");
	var claimsParaArray = new Array(new Array("Over the past several years we have had several large and complicated claims. We have asked Iridium for their support throughout the entire claims process, from the date of the incident to completion of the final negotiations with adjusters and insurers. Iridium has given us excellent coverage analysis and superb advice on negotiation strategy. They have been at the table with us playing a key role in negotiating the best possible financial result. With this support and advice, we have received full value for our claims and settlement long before typical payout expectations. Our business units, senior management and risk management group are delighted with their best in class performance.",
	"Most brokers talk about claims excellence. In our experience, they fall far short on delivery. Iridium is the top performer amongst all of their peers in this most crucial performance deliverable for a risk management group."),
	new Array("Iridium approached us for the opportunity to provide an independent review of our incumbent insurance and D&#38;O coverage, and have been extremely thorough and professional ever since. During the initial transition, Iridium helped us identify and address uncovered exposures, and within the next year we experienced a significant business interruption claim on a facility that previously would have been uninsured. Iridium provided exceptional service in seeing the claim through to payment resolution."));
	var claimsLogoArray = new Array("nexen.gif","result.gif");
	var claimsTitleArray = new Array(new Array("Mark Roberton","Director, Risk Management"),
	new Array("Greg Leavens, CA","Chief Financial Officer"));
	content = content + createResults(claimsLogoArray,claimsTitleArray,claimsBusTitleArray,claimsParaArray);
	liabilityBusTitleArray = Array("Agrium Inc.");
	liabilityLogoArray = new Array("agrium.gif");
	liabilityParaArray = new Array(new Array("As a large corporation with a dual listing, our Directors and Officers are very interested in the executive protection insurance we buy. It is important to us that we have a program in place that provides our Directors and Officers with the broadest coverage available, on competitive terms. We must also have prompt delivery of policy wordings, and have a broker that is capable of negotiating the terms prior to binding, and of working with our internal and external legal counsel to explain the coverage and assist with Board memos and presentations. The team at Iridium has the relationships with the senior members of the D&O liability market, the true understanding of Agrium&#146s priorities, and the extensive knowledge of the policy terms and conditions that we require."));
	liabilityTitleArray = new Array(new Array("Patrick  Freeman, CTP, CGA","Vice President and Treasurer"),
	new Array("Greg Leavens, CA","Chief Financial Officer"));
	content = content + createResults(liabilityLogoArray,liabilityTitleArray,liabilityBusTitleArray,liabilityParaArray);
	return content;
}
////////////////////////////////////////////
function createResults(logoArray,titleArray,busTitleArray,paraArray){

var count = 0;
	var content = "";
	while(count < logoArray.length){
		
		
		content = content + "<div id=\"resultRow\">";
		content = content + "<image src=\"" + imagePath + "/lines/rightAndCenterLine.gif\"></image>";
		content = content + "<div id=\"centerContent\"><br/>";
		if(busTitleArray[count] == "Nexen Inc.")
		{
			content = content + "<h2>Regarding our Claims Handling expertise:</h2>";
		}
		if( logoArray[count] == "agrium.gif")
		{
			content = content + "<h2>Regarding our Directors & Officers Liability expertise:</h2>";
		}
		content = content + "<h3>" + busTitleArray[count] + "</h3>";
		var paragraphs = paraArray[count];
		var count2 = 0;	
		while(count2 < paragraphs.length){
			content = content + "<p>";
			if(count2 == 0){
				content = content + "&quot;";
			}
			content = content + paragraphs[count2];
			count2 = count2 + 1;
			if(count2 == paragraphs.length){
				content = content + "&quot;";
			}
			content = content + "</p>";
		}
		var bTitle = titleArray[count];
		var count3 = 0;
		while(count3 < bTitle.length){
			if(count3 == 0){
				content = content + "<p class=\"colored\">" + bTitle[count3] + "</p>";
			}
			else{
				content = content + "<p class=\"noMarginBottom\">" + bTitle[count3] + "</p>";
			}
			count3 = count3 + 1;
		}
		content = content + "<p>" + "</p>";
		content = content + "</div>" + 
		"<div id=\"rightContent\"><div id=\"resultsLogo\">";
		if(logoArray[count] != "")
		{
			content = content + "<image class=\"busLogo\" src=\"" + imagePath +"/logo/" + logoArray[count] + "\"></image>" 
		}
		content = content + "</div>"; 
		content = content + "</div>";
		count = count + 1;
	}
	return content;
}
////////////////////////////////////////////
function addCompanyMenu(currentPage){
	var contentHolder = document.getElementById("leftContent");
	contentHolder.innerHTML = addCompanyMenuHTML(currentPage);
}
////////////////////////////////////////////
function addStaticBannerHTML(imageURL){
	var cMenu = "<img src=\"" + imagePath + "/headers/" + imageURL + "\" />";
	return cMenu;
}
////////////////////////////////////////////
function addCompanyMenuHTML(currentPage){
//var cMenu = "";
	var cMenu = "<div id=\"companyMenu\">";
	cMenu = cMenu + "<object id=\"companyM\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\"195\" height=\"220\">";
	cMenu = cMenu + "<param name=\"movie\" value=\"companyM.swf\" />";
	cMenu = cMenu + "<!--[if !IE]>-->";
	cMenu = cMenu + "<object type=\"application/x-shockwave-flash\" data=\"companyM.swf\" width=\"195\" height=\"220\">";
	cMenu = cMenu + "<param name=\"flashvars\" value=\"pageName=" + currentPage + "\" />";
	cMenu = cMenu + " <!--<![endif]-->";
	cMenu = cMenu + "<p>Alternative content</p>";
	cMenu = cMenu + "<!--[if !IE]>-->";
	cMenu = cMenu + "</object>";
	cMenu = cMenu + " <!--<![endif]-->";
	cMenu = cMenu + "</object>";
	cMenu = cMenu + "</div>";
	return cMenu;
}
////////////////////////////////////////////
function addFlashHTML(flashMovieName,flashWidth,flashHeight,idName){
	var cMenu = "<div id=\"quote\">";
	cMenu = cMenu + "<object id=\"" + idName + "\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\"" + flashWidth +"\" height=\" " + flashHeight + "\">";
	cMenu = cMenu + "<param name=\"movie\" value=\"" + flashMovieName + "\" />";
	cMenu = cMenu + "<!--[if !IE]>-->";
	cMenu = cMenu + "<object type=\"application/x-shockwave-flash\" data=\"" + flashMovieName + "\" width=\"" + flashWidth + "\" " +  "height" + "=\"" + flashHeight + "\">";
	cMenu = cMenu + " <!--<![endif]-->";
	cMenu = cMenu + "<p>Alternative content</p>";
	cMenu = cMenu + "<!--[if !IE]>-->";
	cMenu = cMenu + "</object>";
	cMenu = cMenu + " <!--<![endif]-->";
	cMenu = cMenu + "</object>";
	cMenu = cMenu + "</div>";
	return cMenu;
}
////////////////////////////////////////////
function addPeopleMenuHTML(currentPage){
	var cMenu = "<div id=\"peopleMenu\">";
	cMenu = cMenu + "<object id=\"peopleM\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\"689\" height=\"130\">";
	cMenu = cMenu + "<param name=\"movie\" value=\"peopleMenu.swf\" />";
	cMenu = cMenu + "<!--[if !IE]>-->";
	cMenu = cMenu + "<object type=\"application/x-shockwave-flash\" data=\"peopleMenu.swf\" width=\"689\" height=\"130\">";
	cMenu = cMenu + " <!--<![endif]-->";
	cMenu = cMenu + "<p>Alternative content</p>";
	cMenu = cMenu + "<!--[if !IE]>-->";
	cMenu = cMenu + "</object>";
	cMenu = cMenu + " <!--<![endif]-->";
	cMenu = cMenu + "</object>";
	cMenu = cMenu + "</div>";
	return cMenu;
}
////////////////////////////////////////////

function addServicesMenu(currentPage){
	var contentHolder = document.getElementById("leftContent");
	contentHolder.innerHTML = addServicesMenuHTML(currentPage);
}
////////////////////////////////////////////
function addServicesMenuHTML(currentPage){
	var cMenu = "<div id=\"servicesM\">";
	cMenu = cMenu + "<object id=\"servicesMenu\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\"172\" height=\"610\">";
	cMenu = cMenu + "<param name=\"movie\" value=\"servicesMenu.swf\" />";
	cMenu = cMenu + "<!--[if !IE]>-->";
	cMenu = cMenu + "<object type=\"application/x-shockwave-flash\" data=\"servicesMenu.swf\" width=\"172\" height=\"610\">";
	cMenu = cMenu + "<param name=\"flashvars\" value=\"pageName=" + currentPage + "\" />";
	cMenu = cMenu + " <!--<![endif]-->";
	cMenu = cMenu + "<p>Alternative content</p>";
	cMenu = cMenu + "<!--[if !IE]>-->";
	cMenu = cMenu + "</object>";
	cMenu = cMenu + " <!--<![endif]-->";
	cMenu = cMenu + "</object>";
	cMenu = cMenu + "</div>";
	return cMenu;
}
function showParam(pageName){
	//alert("showParam"+pageName);
}
////////////////////////////////////////////
function addCompanyHeaderHTML(currentPage){
	var pageNum = getPageNum(currentPage);
	var cMenu ="<image src = \"" + imagePath + "/headers/" + "company.jpg" + "\"></image>";
	/*var cMenu = "<object id=\"companyTop\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\"919\" height=\"410\">";
	cMenu = cMenu + "<param name=\"movie\" value=\"companyTop.swf\" />";
	cMenu = cMenu + "<!--[if !IE]>-->";
	cMenu = cMenu + "<object type=\"application/x-shockwave-flash\" data=\"companyTop.swf\" width=\"919\" height=\"410\">";
	cMenu = cMenu + "<param name=\"flashvars\" value=\"pageName=" + pageNum + "\" />";
	cMenu = cMenu + " <!--<![endif]-->";
	cMenu = cMenu + "<p>Alternative content</p>";
	cMenu = cMenu + "<!--[if !IE]>-->";
	cMenu = cMenu + "</object>";
	cMenu = cMenu + " <!--<![endif]-->";
	cMenu = cMenu + "</object>";*/
	return cMenu;
}
function getPageNum(currentPage){
	var pageNum  =0;
	if(currentPage == "HOME"){
	}else if(currentPage == "SERVICES"){
		pageNum = 2;
	}else if(currentPage == "COMPANY"){
		pageNum = 1;
	}else if(  (currentPage == "NEWS") || (currentPage == "COMMUNITY") || (currentPage == "PARTNERS") || (currentPage == "PEOPLE")){
		pageNum = 1;
	}else if(currentPage == "RESULTS"){
		pageNum = 3;
	}else if(currentPage == "CAREERS"){
		pageNum = 4;
	}else if(currentPage == "CONTACT US"){
		pageNum = 5;
	}else if((currentPage == "OILANDGAS") || (currentPage == "SERVICES") || (currentPage == "POWERANDUTILITIES") || (currentPage == "CLEANENERGY") || (currentPage == "RISKIDENTIFICATION") || (currentPage == "RISKCONTROL") || (currentPage == "INSURANCEPLACEMENT") || (currentPage == "EXECUTIVERISK") || (currentPage == "CAPTIVEMANAGEMENT") || (currentPage == "CLAIMSADVOCACY") || (currentPage == "PROPERTY")) {
		pageNum = 2;
	}
	return pageNum;
}
