// JavaScript Document






/*----------Home page content vars------------*/
/*TO DO - in IE6, Sometimes the images load completely and other times they don't. */




//Image Vars - this is the html for the image that gets written to the container_left div

var img0 = '<img src="/haggerty/_images/JAN2012/01guston.jpg" width="485" height="390" alt="Philip Guston"/>'

var img1 = '<img src="/haggerty/_images/JAN2012/02guston.jpg" width="485" height="390" alt="Philip Guston"/>'


var img2 = '<img src="/haggerty/_images/JAN2012/03guston.jpg" width="485" height="390" alt="Philip Guston"/>'


var img3 = '<img src="/haggerty/_images/JAN2012/04guston.jpg" width="485" height="390" alt="Philip Guston"/>'


var img4 = '<img src="/haggerty/_images/JAN2012/05guston.jpg" width="485" height="390" alt="Philip Guston"/>'


var img5 = '<img src="/haggerty/_images/JAN2012/06barney.jpg" width="485" height="390" alt="The Europeans"/>'


var img6 = '<img src="/haggerty/_images/JAN2012/07barney.jpg" width="485" height="390" alt="The Europeans"/>'


var img7 = '<img src="/haggerty/_images/JAN2012/08barney.jpg" width="485" height="390" alt="The Europeans"/>'

var img8 = '<img src="/haggerty/_images/JAN2012/09barney.jpg" width="485" height="390" alt="The Europeans"/>'

var img9 = '<img src="/haggerty/_images/JAN2012/11barney.jpg" width="485" height="390" alt="The Europeans"/>'

//Content Vars - this is the HTML for the copy that gets written to the container_right div

var content0 = '<h1 class="lighter" style="font-size: 14 px; ">Philip Guston</strong><br /><span class="gold">Inevitable Finality, The Gemini G.E.L. Prints</span></h1><p><a href="exhibit_2012_01_philip_guston.shtml" class="arrow">More information</a></p><h1 class="lighter" style="font-size: 14 px; ">The Europeans</strong><br /><span class="gold">Photographs by Tina Barney</span></h1><p><a href="exhibit_2012_01_tina_barney.shtml" class="arrow">More information</a></p><h1 class="lighter" style="font-size: 14 px; ">Selections</strong><br /><span class="gold">From the Mary B. Finnigan Collection</span></h1><p><a href="exhibit_2012_01_finnigan.shtml" class="arrow">More information</a></p><h1 class="lighter" style="font-size: 14 px; ">John Stezaker</strong><br /><span class="gold">Marriage</span></h1><p><a href="exhibit_2012_01_stezaker.shtml" class="arrow">More information</a></p><h1 style="font-size: 14 px; ">&nbsp;</h1><h1>January 18 - May 20, 2012</h1>'

var content1 ='<h1><span class="lighter"style="font-size: 16px">A Collections Legacy<br /><span class="gold"> Women Donors at the Haggerty</span></h1><p><a href="exhibit_2010_03_women_donors.shtml" class="arrow">More information</a></p> <h1><span class="lighter"style="font-size: 16px">Theodore Czebotar</span><br /> <span class="gold">Paintings from the Olympic Peninsula</span></h1><p><a href="exhibit_2010_03_Czebotar.shtml" class="arrow">More information</a></p><h2 class="bottom"><span class="lighter"style="font-size: 16px">April 28 - Aug. 15, 2010</h2>'

var content2 ='<h1><span class="lighter"style="font-size: 16px">A Collections Legacy<br /><span class="gold"> Women Donors at the Haggerty</span></h1><p><a href="exhibit_2010_03_women_donors.shtml" class="arrow">More information</a></p> <h1><span class="lighter"style="font-size: 16px">Theodore Czebotar</span><br /> <span class="gold">Paintings from the Olympic Peninsula</span></h1><p><a href="exhibit_2010_03_Czebotar.shtml" class="arrow">More information</a></p><h2 class="bottom"><span class="lighter"style="font-size: 16px">April 28 - Aug. 15, 2010</h2>'


/*These are the attributions for the artwork that appears in the left div*/  

var attribution0 = '<p style="margin-top:20px;">Philip Guston</p>'
var attribution1 = '<p style="margin-top:20px;">Philip Guston</p>'
var attribution2 = '<p style="margin-top:20px;">Philip Guston</p>'
var attribution3 = '<p style="margin-top:20px;">Philip Guston</p>'
var attribution4 = '<p style="margin-top:20px;">Philip Guston</p>'
var attribution5 = '<p style="margin-top:20px;">The Europeans</p>'
var attribution6 = '<p style="margin-top:20px;">The Europeans</p>'
var attribution7 = '<p style="margin-top:20px;">The Europeans</p>'
var attribution8 = '<p style="margin-top:20px;">The Europeans</p>'
var attribution9 = '<p style="margin-top:20px;">The Europeans</p>'

var thumb3 = '/haggerty/_images/home_th_3_on.jpg/'

function contentSwitcher(img, content, attribution) {
	
	document.getElementById('container_left').innerHTML=img;
	document.getElementById('container_right').innerHTML=content+attribution;
	
}


