// JavaScript Document
//BEGIN DECLARE MISSION QUOTE VARIABLE
	var mission = '<span style="font-size:16px;line-height:32px;">Understanding the goals of various components of each commercial building project is the key to a successful facility.  Effective organization, experienced management, quality control and budget sensitivity are the primary tools used to achieve the construction environment necessary to fulfill these goals.  Providing these crucial elements to our projects is the goal of Patner Construction, Inc.</span>';
//BEGIN DECLARE STRATEGY QUOTE VARIABLE
	var strategy = '<span style="font-size:16px;">We are aware of the multitude of choices you have when selecting a construction partner.  That is why our goal is not to be the biggest corporation, but to be the best in our field.  We offer personal service tailored to your project needs and make each of our team associates available to our clients around the clock.<br/><br/>';

	strategy += 'Our project teams are managed with efficiency and foresight.  Through focus, experience and structure, we effectively mitigate problems before they arise. <br/>';
	strategy += 'We serve all customer segments:<br/>';
	strategy += '<table border="0" cellpadding="5" cellspacing="0">';
	strategy += '<tr>';
	strategy += '<td><li style="font-size:14px;">Institutional</li></td>';
	strategy += '<td><li style="font-size:14px;">Biotech</li></td>';
	strategy += '<td><li style="font-size:14px;">Aviation</li></td>';
	strategy += '</tr>';
	strategy += '<tr>';
	strategy += '<td><li style="font-size:14px;">Corporate Interiors</li></td>';
	strategy += '<td><li style="font-size:14px;">Government</li></td>';
	strategy += '<td><li style="font-size:14px;">Healthcare</li></td>';
	strategy += '</tr>';
	strategy += '<tr>';
	strategy += '<td><li style="font-size:14px;">Site Development</li></td>';
	strategy += '<td><li style="font-size:14px;">Law</li></td>';
	strategy += '<td><li style="font-size:14px;">Techonolgy</li></td>';
	strategy += '</tr>';
	strategy += '</table>';

//BEGIN DECLARE HISTORY QUOTE VARIABLE
	var historyQuote = '<span style="font-size:15px;">Patner Construction, Inc. was founded by David Bredbenner in January of 2000. During its first two years, Patner Construction established itself as a proven leader in the aviation field, completing projects at all three area airports: Washington Dulles International Airport, Ronald Reagan Washington National Airport and Baltimore Washington International Airport.<br/><br/>';
	
	historyQuote += 'In November of 2001, Charles Mays joined Patner Construction, Inc. and expanded the institutional clientele, to include regional universities and hospitals.  Patner Construction maintains a portfolio that also includes the interior commercial market throughout Maryland, Virginia and the District of Columbia.<br/><br/>';
	historyQuote += 'With over 45 years of combined experience, Mr. Bredbenner and Mr. Mays have completed projects that, collectively, total over a quarter of a billion dollars.   Patner Construction project management experience includes many Construction Management/GMP projects, fast track tenant build-outs, interior renovations, design build and base building projects.</span>';

//BEGIN DECLARE FINANCIAL QUOTE VARIABLE
	var financial = '<span style="font-size:16px;line-height:32px;">As a construction company in a rapidly changing economic environment, Patner Construction, Inc. takes great pride in having successfully completed projects totaling more than 250 million dollars over the last 9 years.  Our projected sales for the upcoming year should continue along with the upward trend.  The company has attained this sales volume while managing to avoid any long or short term debt by effectively utilizing our working capital and reinvesting all earned income.</span>';

//BEGIN DECLARE INSURANCE QUOTE VARIABLE
	var insurance = '<span style="font-size:16px;">Patner Construction, Inc. maintains its corporate insurance with: <br/><br/>';
	insurance += 'Insurance Associates Agency, Inc.<br/>';
	insurance += '10201 Fairfax Blvd., Suite 500<br/>';
	insurance += 'Fairfax, VA 22030<br/>';
	insurance += '703-352-7333<br/><br/>';
	insurance += 'Our current limits are consistent with the requirements of the building industry and, in most situations, exceed landlord and/or tenant requirements.</span>';
	
	function addQuote(type)
	{
		var qDiv = document.getElementById('quote');
		qDiv.className='quoteOn';
		var quote = '';
		if(type=='mission')
		{
			quote = mission;
		}else if(type=='strategy')
		{
			quote = strategy;
		}else if(type=='historyQuote')
		{
			quote = historyQuote;
		}else if(type=='financial')
		{
			quote = financial;
		}else if(type=='insurance')
		{
			quote = insurance;
		}
		qDiv.innerHTML = quote;
	}
	function removeQuote()
	{
		document.getElementById('quote').className='quote';
	}
