

/* ------------------------------------------------   Magic Vars   ------------------------------------------------ */
var globalPath = 'http://accessut.org/' //this is the path to root that we can use for building common elements
var uiiOverride = false; //false allows the uii banner to load. true turns it off. used with the loadUII() function below

var theDate = new Date();
var currentYear = theDate.getYear();
if (currentYear < 2000) {
	currentYear += 1900;
}
//alert('currentYear = ' + currentYear);


// daParams means include parameters or don't; parameter passed here should be 'y' for yes or 'n' for no
// You can use defaults for the parameters by leaving them between empty quote marks. Example: ('http:// url', '', '', '', '', 'y')
// You can specify the parameters you want to by adding numeric values. DO NOT, however, put the numeric values in quotes.

function popup(daURL, daHeight, daWidth, daTop, daLeft, daParams) {

	var h = ''; // New window height. Defined by daHeight, but has a default if daHeight is empty.
	var w = ''; // New window width. Defined by daWidth, but has a default if daWidth is empty.
	var t = ''; // New window location from screen top. Defined by daTop, but has a default if daTop is empty.
	var l = ''; // New window location from screen left. Defined by daLeft, but has a default if daLeft is empty.

		if(daHeight == 'null' || daHeight == '') {
		  h = screen.availHeight / 2; //height default
		} else {
		  h = daHeight;
		}

		if(daWidth == 'null' || daWidth == '') {
		  w = screen.availWidth / 2; //width default
		} else {
		  w = daWidth;
		}

		if(daTop == 'null' || daTop == '') {
		  t = 75; //top default
		} else {
		  t = daTop
		}

		if(daLeft == 'null' || daLeft == '') {
		  l = screen.availWidth / 2.5; //left default
		} else {
		  l = daLeft
		}

	var params = 'toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width='+ w +',height='+ h +',top='+ t +',left='+ l +'';
	var params2 = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+ w +',height='+ h +',top='+ t +',left='+ l +'';
	var newWindow = '';

		if (daParams == 'y') {
		  newWindow = window.open(daURL, 'daWindow', params);
		} else {
		  newWindow = window.open(daURL, 'daWindow', params2);
		}
		
	newWindow.focus();
}


/* ------------------------------------------------   Menu Arrays   ------------------------------------------------ */
// .push({theLink:'', theImage:'imageHere', theName:''});

var  mainNavArray = new Array();
	mainNavArray.push({theLink:'index.html', theImage:'common/images/mainNav/01home.gif', theName:'Home'});
	mainNavArray.push({theLink:'disabilitylinks/disabilitylinks.html', theImage:'common/images/mainNav/02links.gif', theName:'Disability Links'});
	mainNavArray.push({theLink:'ada/index.html', theImage:'common/images/mainNav/03ada.gif', theName:'ADA Resources'});
	mainNavArray.push({theLink:'multimedia/now.html', theImage:'common/images/mainNav/04webcasts.gif', theName:'Webcasts'});
	mainNavArray.push({theLink:'multimedia/index.html', theImage:'common/images/mainNav/05multimedia.gif', theName:'Multimedia'});
	mainNavArray.push({theLink:'http://efs.utah.gov/efs', theImage:'common/images/mainNav/06efs.gif', theName:'Equipment for Sale'});
	mainNavArray.push({theLink:'contact/index.html', theImage:'common/images/mainNav/07contact.gif', theName:'Contact Us'});
	


var  footerArray = new Array();
	footerArray.push({theLink:'http://www.utah.gov/privacypolicy.html', theImage:'imageHere', theName:'Privacy Policy'});
	footerArray.push({theLink:'http://www.utah.gov/disclaimer.html', theImage:'imageHere', theName:'Terms of Use'});
	


var 	ustreamArray = new Array(); //this menu is created in reverse order so newest items go at the bottom, but display on the page at the top. 
		
	
	
	
	
	
		

	//ustreamArray.push({theLink:'http://www.ustream.tv/flash/video/', theDate:'', theName:''});

var	assistiveTechArray = new Array();
	assistiveTechArray.push({theLink:'http://www.ustream.tv/flash/video/1038719', theDate:'January 8, 2009', theName:'CPD - CREATE Program'});
	assistiveTechArray.push({theLink:'http://www.ustream.tv/flash/video/1422477', theDate:'April 23, 2009', theName:'Ken Reid, UCAT'});
	assistiveTechArray.push({theLink:'http://www.ustream.tv/flash/video/1857250', theDate:'July 23, 2009', theName:'Utah Assistive Technology Foundation with Dr.Marilyn Hammond and Sauchin Pavithran MS'});
	assistiveTechArray.push({theLink:'http://www.ustream.tv/flash/video/6886240', theDate:'May 13, 2010', theName:'Craig Boogaard, Utah Computer Center for Citizens with Disabilities'});
	assistiveTechArray.push({theLink:'http://www.ustream.tv/flash/video/9769678', theDate:'September 23, 2010', theName:'Steve Townsend, O.T. with Utah Center for Assistive Technology: "Driving with a disability and how to be evaluated"'});
	assistiveTechArray.push({theLink:'http://www.ustream.tv/flash/video/11451751', theDate:'December 15, 2010', theName:'Everette Bacon, A.T. Specialist with Utah Division of Services for the Blind and Vision Impaired'});
	assistiveTechArray.push({theLink:'http://www.ustream.tv/flash/video/15992295', theDate:'July 14, 2011', theName:'Storee Powell, Marketing/Public Relations, Utah Assistive Technology Program: Social Networking and People with Disabilities'});
 	assistiveTechArray.push({theLink:'http://www.ustream.tv/flash/video/16293961', theDate:'July 28, 2011', theName:'When Cultures Collide: Deaf World Television, Inc with Ms Sparks-Chellee Phillips and Thomas R.Platt'});


var	advocacyArray = new Array();
	advocacyArray.push({theLink:'http://www.ustream.tv/flash/video/1058866', theDate:'January 15, 2009', theName:'DRAC'});
	advocacyArray.push({theLink:'http://www.ustream.tv/flash/video/1147020', theDate:'February 12, 2009', theName:'Salt Lake Advocacy and Community Training (Salt Lake ACT)'});
	advocacyArray.push({theLink:'http://www.ustream.tv/flash/video/1362988', theDate:'April 9, 2009', theName:'Mark Miller, DOC'});
	advocacyArray.push({theLink:'http://www.ustream.tv/flash/video/1778394', theDate:'July 9, 2009', theName:'Access Utah Now - Claire Mantonya, UDDC'});
	advocacyArray.push({theLink:'http://www.ustream.tv/flash/video/5363370', theDate:'March 11, 2010', theName:'Yes We Can and Healthy Life Styles for Adolescents with Disabilities - Dr. Lauren Clark'});
	advocacyArray.push({theLink:'http://www.ustream.tv/flash/video/5704441', theDate:'March 25, 2010', theName:'Kristine Fawson, Co-Chair, The Legislative Coalition for People with Disabilities'});
	advocacyArray.push({theLink:'http://www.ustream.tv/flash/video/6046215', theDate:'April 8, 2010', theName:'Dr. Tracy Justesen, Managing Attorney, Disability Law Center'});
	advocacyArray.push({theLink:'http://www.ustream.tv/flash/video/6362162', theDate:'April 22, 2010', theName:'Amy Notewll, Director of Emergency Preparedness for People with Disabilities'});
	advocacyArray.push({theLink:'http://www.ustream.tv/flash/video/10199297', theDate:'October 14, 2010', theName:'Jenniffer Adams and Tracy Archlueta: Grassroots Advocacy Partnership (GAP) "Grass Roots options for people with disabilities"'});
	advocacyArray.push({theLink:'http://www.ustream.tv/flash/video/11992703', theDate:'January 13, 2011', theName:'Janet Wade, Director of Utah Services at Easter Seals Northern Rocky Mountain'}); 
	advocacyArray.push({theLink:'http://www.ustream.tv/flash/video/14179780', theDate:'April 21, 2011', theName:'Bill Young, Director of the Utah Independent Living Council'});
	advocacyArray.push({theLink:'http://www.ustream.tv/flash/video/19720605', theDate:'January 12, 2012', theName:'Michael Stott, Director of ADA Community Liaison for the Office of the Mayor: Salt Lake City'});



var	disabilitySpecificArray = new Array();
	disabilitySpecificArray.push({theLink:'http://www.ustream.tv/flash/video/1977576', theDate:'August 13, 2009', theName:'Ron Roskos Executive Director, Brain Injury Association of Utah'});
	disabilitySpecificArray.push({theLink:'http://www.ustream.tv/flash/video/13229711', theDate:'March 10, 2011', theName:'Julianne Fritz and Clare Wright, Utah Souther Idaho Chapter of the National MS Society.'});
	disabilitySpecificArray.push({theLink:'http://www.ustream.tv/flash/video/13836806', theDate:'April 7, 2011', theName:'Phillis Sharples and Saphra White from Alliance House, Mental Health'});
	disabilitySpecificArray.push({theLink:'http://www.ustream.tv/flash/video/14654318', theDate:'May 12, 2011', theName:'Shelly Petty, Executive Director, Cerebral Palsy of Utah DBA Foundations for Independence'});
	disabilitySpecificArray.push({theLink:'http://www.ustream.tv/flash/video/16867514', theDate:'August 25, 2011', theName:'Jenn Whiting, Executive Director, Epilepsy Association of Utah'});
	disabilitySpecificArray.push({theLink:'http://www.ustream.tv/flash/video/18144355', theDate:'October 27, 2011', theName:'Marilyn Call, Executive Director, Sanderson Center for the Deaf and Hard of Hearing'});



var	educationArray = new Array();
	educationArray.push({theLink:'http://www.ustream.tv/flash/video/4644363', theDate:'February 11, 2010', theName:'Education Enhancement Program - Julie Beckstead, Program Coordinator'});


var	employmentArray = new Array();
	employmentArray.push({theLink:'http://www.ustream.tv/flash/video/820471',  theDate:'October 28, 2008', theName:'Social Security Ticket to Work and You'});
	employmentArray.push({theLink:'http://www.ustream.tv/flash/video/1104623', theDate:'January 29, 2009', theName:'Gordon Swensen, USOR'});
	employmentArray.push({theLink:'http://www.ustream.tv/flash/video/1572491', theDate:'May 28, 2009', theName:'Martha Wunderli UIDAN'});
	employmentArray.push({theLink:'http://www.ustream.tv/flash/video/4278636', theDate:'January 28, 2010', theName:'Leah Lobato, Employer Relation Specialist USOR'});
	employmentArray.push({theLink:'http://www.ustream.tv/flash/video/7250089', theDate:'June 2, 2010', theName:'Leslee Hintze, Exec. Dir, Utah Governor\'s Committee on Employment for People with Disabilities'});
	employmentArray.push({theLink:'http://www.ustream.tv/flash/video/12911712', theDate:'February 24, 2011', theName:'Utah Individual Development Account Network (UIDAN) Executive Director, Martha Wunderli and program participant Justin Duncan'});	
	employmentArray.push({theLink:'http://www.ustream.tv/flash/video/13535659', theDate:'March 28, 2011', theName:'Carol Rudell, The Work Ability Program'});
 	


var	familySupportArray = new Array();
	familySupportArray.push({theLink:'http://www.ustream.tv/flash/video/2137433', theDate:'September 10, 2009', theName:'Utah Food Bank'});
	familySupportArray.push({theLink:'http://www.ustream.tv/flash/video/2593598', theDate:'November 19, 2009', theName:'Ms. Helen Post, Executive Director Utah Parent Center'});
	familySupportArray.push({theLink:'http://www.ustream.tv/flash/video/8151234', theDate:'July 8, 2010', theName:'Family to Family Interview with Deborah Bowman and Julia Pearce'});
	familySupportArray.push({theLink:'http://www.ustream.tv/flash/video/10473882', theDate:'October 28, 2010', theName:'Maureen Henry J.D., Director Aging and Disabilty Recource Program (ADRC program)'});


var	healthArray = new Array();
	healthArray.push({theLink:'http://www.ustream.tv/flash/video/7867817', theDate:'June 24, 2010', theName:'"Choose A Lane" with author, Ken Reid'});
	healthArray.push({theLink:'http://www.ustream.tv/flash/video/10635234', theDate:'November 4, 2010', theName:'Darren Hotton, Senior Health Insurance Information Program (SHIP)'});


var	housingArray = new Array();
	housingArray.push({theLink:'http://www.ustream.tv/flash/video/2220163', theDate:'September 24, 2009', theName:'Roger Borgenicht - ASSIST, Inc.'});
	housingArray.push({theLink:'http://www.ustream.tv/flash/video/2313183', theDate:'October 10, 2009', theName:'Mr. Kerry Bate, Executive Director of Housing Authority of Salt Lake County'});
	housingArray.push({theLink:'http://www.ustream.tv/flash/video/2402348', theDate:'October 22, 2009', theName:'Marion Willey Exective Director of Utah Non-profit Housing Corporation'});
	housingArray.push({theLink:'http://www.ustream.tv/flash/video/12283259', theDate:'January 27, 2011', theName:'Carol Edic, Accessible Homes Foundation'});
	housingArray.push({theLink:'http://www.ustream.tv/flash/video/17436327', theDate:'September 22, 2011', theName:'Karen Cleveland, Realtor, Equity Real Estate'});



var	publicBenefitsArray = new Array();
	publicBenefitsArray.push({theLink:'http://www.ustream.tv/flash/video/1243979', theDate:'March 12, 2009', theName:'Alan Ormsby, DSPD'});
	publicBenefitsArray.push({theLink:'http://www.ustream.tv/flash/video/1505626', theDate:'May 14, 2009', theName:'CSHCN Developmental Clinics'});
	publicBenefitsArray.push({theLink:'http://www.ustream.tv/flash/video/1640095', theDate:'June 11, 2009', theName:'Marty Blair IOTI'});
	publicBenefitsArray.push({theLink:'http://www.ustream.tv/flash/video/2057357', theDate:'August 27, 2009', theName:'Transition Team for the Utah Bureau of Children with Special Health Care Needs'});
	publicBenefitsArray.push({theLink:'http://www.ustream.tv/flash/video/5000153', theDate:'February 25, 2010', theName:'Disability Determination Services - Gary Nakao and Paul Clingo'});
	publicBenefitsArray.push({theLink:'http://www.ustream.tv/flash/video/12597996', theDate:'February 10, 2011', theName:'Sonnie Yudell, Utah Division of Aging and Adult Services and Utah Care Givers Coalition'});
	publicBenefitsArray.push({theLink:'http://www.ustream.tv/flash/video/19012070', theDate:'December 8, 2011', theName:'Steve Wrigley, DSPD, The New Normal'});


var	recreationArray = new Array();
	recreationArray.push({theLink:'http://www.ustream.tv/flash/video/1190551', theDate:'February 24, 2009', theName:'Ruth Lubbers, Art Access'});
	recreationArray.push({theLink:'http://www.ustream.tv/flash/video/7567450', theDate:'June 10, 2010', theName:'Splore: Talking with Dr. John LeBrett, Executive Director'});
	recreationArray.push({theLink:'http://www.ustream.tv/flash/video/8440005', theDate:'July 22, 2010', theName:'Recreation: Interview with Gail Loveland, Executive Director, National Abilities Center'});
	recreationArray.push({theLink:'http://www.ustream.tv/flash/video/9454297', theDate:'September 9, 2010', theName:'Adjunct Professor Stan Clawson,  University of Utah, Director of Continue, a film on alternative sports and recreation options for people with disabilities.'});
	recreationArray.push({theLink:'http://www.ustream.tv/flash/video/9769678', theDate:'September 23, 2010', theName:'Steve Townsend, O.T. with Utah Center for Assistive Technology: "Driving with a disability and how to be evaluated"'});
	recreationArray.push({theLink:'http://www.ustream.tv/flash/video/11451751', theDate:'December 15, 2010', theName:'Everette Bacon, A.T. Specialist with Utah Division of Services for the Blind and Vision Impaired'});
	recreationArray.push({theLink:'http://www.ustream.tv/flash/video/14973497', theDate:'May 26, 2011', theName:'Vern Burgess, Recreation Coordinator, Tri-county Independent Living Center, discusses recreation options for people with disabilities'});
	recreationArray.push({theLink:'http://www.ustream.tv/flash/video/15268926', theDate:'June 9, 2011', theName:'Gary Ethington, Exec. Director, Kostopulos Dream Foundationa: Recreation alternatives for people with disabilities in Utah'});
	recreationArray.push({theLink:'http://www.ustream.tv/flash/video/15568291', theDate:'June 23, 2011', theName:'Tanji Kari and Stan Clawson: TRAILS program, University of Utah Physical Rehabilitation'});

var	transitionsArray = new Array();
	transitionsArray.push({theLink:'http://www.ustream.tv/flash/video/18431716', theDate:'November 10, 2011', theName:'Jennie Gibson and Robyn Chidester: From "No" Where to "Know" Where: Utah Parent Center'});
	

var	transportationArray = new Array();
	transportationArray.push({theLink:'http://www.ustream.tv/flash/video/1300880', theDate:'March 26, 2009', theName:'Sherry Repscher, UTA'});
	transportationArray.push({theLink:'http://www.ustream.tv/flash/video/17143182', theDate:'September 8, 2011', theName:'Cherryl Beveridge, UTA, FlexTrans'});




/* ------------------------------------------------   Menu Functions   ------------------------------------------------ */
// !! this uses an array to build menu items. it relies on the global variable called globalPath (defined at top of page) to point to the current domain.
// Provide the array you want to build.
// Answer 'yes' to hardReturn if you want the menu organized as paragraphs
// Answer 'yes' to listItem if you want the menu organized as a list
function buildTextMenu(theArray, hardReturn, listItem) { 
	var htmlCode = '';
	
	var listOpen = '';
	var listClose = '';
	var listItemBegin = '';
	var listItemEnd = '';
	var hardReturnBegin = '';
	var hardReturnEnd = '';
	
	if (hardReturn == 'yes') {
		hardReturnBegin = '<p>';
		hardReturnEnd = '</p>';
	}
	
	if (listItem == 'yes') {
		listOpen = '<ul class="menuList">';
		listClose = '</ul>';
		listItemBegin = '<li>';
		listItemEnd = '</li>';
	}
	
	htmlCode += listOpen;
	
	for(i=0; i<theArray.length; i++) {
		if( theArray[i].theLink.indexOf('http://') != -1 || theArray[i].theLink.indexOf('https://') != -1){ //check for absolute url
			htmlCode += hardReturnBegin + listItemBegin + '<a href="' + theArray[i].theLink + '" alt="' + theArray[i].theName + '" title="' + theArray[i].theName + '" />' + theArray[i].theName + '</a>' + listItemEnd + hardReturnEnd;
		} else { //if url is not absolute, then add the global path
			htmlCode += hardReturnBegin + listItemBegin + '<a href="' + globalPath + theArray[i].theLink + '" alt="' + theArray[i].theName + '" title="' + theArray[i].theName + '">' + theArray[i].theName + '</a>' + listItemEnd + hardReturnEnd;
		}
	}
	
	htmlCode += listClose;
	//alert(htmlCode);
	
	document.write(htmlCode);
}


//buildGraphicMenu(mainNavArray);
function buildGraphicMenu(theArray) { // !! this uses an array to build menu items. it relies on the global variable called globalPath (defined at top of page) to point to the current domain. 
	var htmlCode = '';

	for(i=0; i<theArray.length; i++) {
		if( theArray[i].theLink.indexOf('http://') != -1 ){ //check for absolute url
			htmlCode += '<a href="' + theArray[i].theLink + '"><img src="' + globalPath + theArray[i].theImage + '" alt="' + theArray[i].theName + '" title="' + theArray[i].theName + '" /></a>';
		} else { //if url is not absolute, then add the global path
			htmlCode += '<a href="' + globalPath + theArray[i].theLink + '"><img src="' + globalPath + theArray[i].theImage + '" alt="' + theArray[i].theName + '" title="' + theArray[i].theName + '" /></a>';
		}
	}
	
	document.write(htmlCode);
}




function buildUstream(theArray, hardReturn, listItem) { 
	var htmlCode = '';
	
	var listOpen = '';
	var listClose = '';
	var listItemBegin = '';
	var listItemEnd = '';
	var hardReturnBegin = '';
	var hardReturnEnd = '';
	
	if (hardReturn == 'yes') {
		hardReturnBegin = '<p>';
		hardReturnEnd = '</p>';
	}
	
	if (listItem == 'yes') {
		listOpen = '<ul>';
		listClose = '</ul>';
		listItemBegin = '<li>';
		listItemEnd = '</li>';
	}
	
	htmlCode += listOpen;
	
	for(i=theArray.length-1; i>=0; i--) {
		if( theArray[i].theLink.indexOf('http://') != -1 || theArray[i].theLink.indexOf('https://') != -1){ //check for absolute url
			htmlCode += hardReturnBegin + listItemBegin + '<a href="' + theArray[i].theLink + '" alt="' + theArray[i].theDate + ' - ' +  theArray[i].theName + '" title="' + theArray[i].theDate + ' - ' +  theArray[i].theName + '" onclick="return hs.htmlExpand(this, { objectType: \'swf\', width: 400, objectWidth: 400, objectHeight: 320, maincontentText: \'You need to upgrade your Flash player\', swfOptions: { version: \'7\' }  } )" class="highslide" />' + theArray[i].theDate + '</a>' + ' - ' + theArray[i].theName + listItemEnd + hardReturnEnd;
			//htmlCode += hardReturnBegin + listItemBegin + '<a href="' + theArray[i].theLink + '" alt="' + theArray[i].theName + '" title="' + theArray[i].theName + '" />' + theArray[i].theName + '</a>' + listItemEnd + hardReturnEnd;
		} else { //if url is not absolute, then add the global path
			//htmlCode += hardReturnBegin + listItemBegin + '<a href="' + globalPath + theArray[i].theLink + '" alt="' + theArray[i].theName + '" title="' + theArray[i].theName + '">' + theArray[i].theName + '</a>' + listItemEnd + hardReturnEnd;
		}
	}
	
	htmlCode += listClose;
	//alert(htmlCode);
	
	document.write(htmlCode);
}


//<a href="http://www.ustream.tv/flash/video/1572491" onclick="return hs.htmlExpand(this, { objectType: \'swf\', width: 400, objectWidth: 400, objectHeight: 320, maincontentText: \'You need to upgrade your Flash player\', swfOptions: { version: '7' }  } )" class="highslide">May 28, 2009</a> - Martha Wunderli UIDAN



/* ------------------------------------------------   Content   ------------------------------------------------ */
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-8901218-2']);
  _gaq.push(['_trackPageview']);

function addAnalytics() {
document.write("\n" + unescape("%3Cscript type='text/javascript'%3E"));

var htmlCode = '';

	htmlCode += "\n" + "(function() {";
	htmlCode += "\n" + "var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;";
	htmlCode += "\n" + "ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';";
	htmlCode += "\n" + "var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);";
	htmlCode += "\n" + "})();";
document.write(htmlCode);

document.write("\n" + unescape("%3C/script%3E"));
}



function brandingContent() {
	var htmlCode = '';
	document.write(htmlCode);
}




function footer() {
	var htmlCode = '';
	htmlCode += currentYear + ' &copy; Access Utah Network<br />';
	document.write(htmlCode);
	buildTextMenu(mainNavArray, 'no', 'no');
	document.write('<br />');
	buildTextMenu(footerArray, 'no', 'no');
}




/* ------------------------------------------------   IE Style   ------------------------------------------------ */

function ieStyle() {
	//alert('ieStyle() fired');
	var htmlCode = '';
	htmlCode += '<!--[if IE 5]><link href="' + globalPath + 'common/css/ieStyle.css" rel="stylesheet" type="text/css"><![endif]-->';
	htmlCode += '<!--[if IE 6]><link href="' + globalPath + 'common/css/ieStyle.css" rel="stylesheet" type="text/css"><![endif]-->';
	htmlCode += '<!--[if IE 7]><link href="' + globalPath + 'common/css/ieStyle.css" rel="stylesheet" type="text/css"><![endif]-->';
	
	document.write(htmlCode);
}



/* ------------------------------------------------   UII Loader   ------------------------------------------------ */
function loadUII(pleaseLoad) {
	var htmlCode =  '';
	
	if(uiiOverride == true ) {
		document.getElementById('uiiBanner').innerHTML = '<img src="' + globalPath + 'common/images/uii/uiiLeft.gif">';
	}
}






























