function Summary()
{
	var brandGreen = '#7d9434';
	var brandRed = '#9d251f';
	var brandYellow = '#9d251f';
	var brandGrey = '#efeeee';
	
	Summary.prototype.init = function(val)
	{
		var myY = '212px';
		
		
		
		// SUMMARY TITLE
		$('#id_summary_title').css('position','absolute');
		$('#id_summary_title').css('width','auto');
		$('#id_summary_title').css('left','20px');
		$('#id_summary_title').css('top', '210px');
		
		$('<div id="id_summary_title_head" class="class_summary_title_head"></div>').appendTo('#id_summary_title');
		$('<div id="id_summary_title_head2" class="class_summary_title_head2"></div>').appendTo('#id_summary_title');
		$('<div id="id_summary_title_res" class="class_summary_title_res"></div>').appendTo('#id_summary_title');
		
		$('#id_summary_title_head').html('A<br>SUMMATION<br>OF<br>CHARACTER');
		$('#id_summary_title_head2').html('<hr size=2>THE PROFESSIONAL<br>ABSTRACT OF<br>JOSH NESPODZANY');
		if(val==false)
		{
			$('#id_summary_title_res').html('<hr size=2><a href="docs/jnespodzany_resume.pdf" class="class_summary_title_res">DOWNLOAD PDF</a>');
		}
		//
		//$('#id_summary_title').html('<span class="class_summary_title_head">A<br>HISTORICAL<br>RECORD<br>OF WORK</span><br><hr size=2><span class="class_summary_title_head2">THE PROFESSIONAL<br>WORK HISTORY OF<br>JOSH NESPODZANY</span>');
		
		// SUMMARY CONTENT
		var padding = '10px';
		$('#id_summary_list').css('position','absolute');
		$('#id_summary_list').css('left','200px');
		$('#id_summary_list').css('top',myY);
		$('#id_summary_list').css('width','715px');
		$('#id_summary_list').css('height','auto');
		$('#id_summary_list').css('padding','20px');
		$('#id_summary_list').css('overflow', 'auto');
		$('<div id="id_summary_content" class="class_summary_content"></div>').appendTo('#id_summary_list');
		
		$('#id_summary_img').css('width','260px');
		$('#id_summary_img').css('float','left');
		$('#id_summary_img').css('border-style','solid');
		$('#id_summary_img').css('border-width','2px');
		
		$('#id_summary_body').css('width','auto');
		$('#id_summary_body').css('float','right');
		$('#id_summary_body').css('overflow','hidden');
		
		
		$('#id_summary_content').css('width', 'auto');
		$('#id_summary_content').css('height', 'auto');
		$('#id_summary_content').css('overflow', 'auto');
		//$('#id_summary_content').css('magin-top', '50px');
		$('#id_summary_content').css('padding', '10px');
		$('#id_summary_content').css('background-color', brandGrey);
		//$('#id_summary_content').html('<span class="summaryHeader"><br>Hello my name is Josh Nespodzany,<p></span><span class="summaryPullQuote"><img src="images/summary_quote.gif"><br><br></span><span class="class_summary_img"><img src="images/summaryBoolean.png"></span><span class="class_summary_body">For over 10 years I have worked in the field of communication arts and advertising. In that time I have worked with such organizations as American Eagle Outfitters, The State of Pennsylvania, The United Nations, & Novo Nordisk. I bring a unique brand of energy, excitement, and perspective to the teams I work with and the projects I work on.<br><br>Long ago the left side of my brain and the right side of my brain signed a peace treaty. (<i>see figure 1</i>) This union of mathematics & the humanities has helped to cut departmental polarization that all to often plagues the field of advertising and communications. This has allowed me proficiencies in what are normally conflicting branches of discipline. Being able to see through the technology into the creative or visa verse consistently results in higher fidelity executions with minimal loss due to departmental misperception.</span>');
		$("<div id='id_summary_contentImg'></div>").appendTo('#id_summary_content');
		$('#id_summary_contentImg').css('float', 'left');
		$('#id_summary_contentImg').css('width', '260px');
		$('#id_summary_contentImg').html('<img src="images/summaryBoolean.png">');
		
		$("<div id='id_summary_contentText' class='class_summary_contentText'></div>").appendTo('#id_summary_content');
		$('#id_summary_contentText').css('float', 'right');
		$('#id_summary_contentText').css('width', '420px');
		$('#id_summary_contentText').css('position', 'relative');
		$('#id_summary_contentText').css('margin-top', '-14px');
		
		$('#id_summary_contentText').html('<span class="summaryHeader"><br>Hello, my name is Josh Nespodzany<p></span><img src="images/summary_quote.gif"><span class="class_summary_body"><br>For over 10 years I have worked in the field of communication arts and advertising. In that time I have worked with such organizations as American Eagle Outfitters, The State of Pennsylvania, The United Nations, & Novo Nordisk. This background have given me extensive experience in the avenues of retail, government, and the pharmaceutical industry from both consumer and a health care professional perspective.<br><br>Long ago the left side of my brain and the right side of my brain signed a peace treaty. This collaboration of mathematics and humanities has helped to cut departmental polarization that all to often plagues the field of advertising and communications. This has also allowed me proficiencies in what are normally conflicting branches of discipline. Being able to see through the technology into the creative or visa verse consistently results in higher fidelity executions with minimal loss due to departmental misperception. From this I bring a unique brand of energy, excitement, and perspective to the teams I work with and the projects I work on.</span>');
		
		
		//$('#id_summary_content').css('height', $('#id_summary_contentText').height()-25);
		//$('#id_summary_list').css('height',$('#id_summary_content').height()+20);
		
		
		$("<div class='clear'></div>").appendTo('#id_summary_content');
		$('#id_summary').fadeOut(0, fadeOutComplete);	
	}
	
	fadeOutComplete = function()
	{
		
	}
	
	showSummary = function()
	{
		$('#id_summary').delay(1000).fadeIn(1500);
	}
	
	hideSummary = function()
	{
		$('#id_summary').fadeOut(1500);
	}
}
