window.onerror=function(){ return true; };

styles=[
["body","background:#002463 url(//disney.go.com/disneycareers/dimg/images/background-home.jpg) top center no-repeat; margin:0; padding:0;"],
["a","color:#4269B5;"],
[".even","padding:0; margin:3px 3px 3px 18px;"],
["body, td, div","font:12px arial; color:#101010;"],
["#nav-holder a","font:11px arial; color:black; text-decoration:none;"],
["#nav-holder a:hover","font:11px arial; color:white; text-decoration:none;"],
["#logos","position:absolute; width:770px; height:60px; left:160px; top:0;"]
];

document.writeln('<style>');  for (sty in styles){ document.writeln(styles[sty][0]+'{ '+styles[sty][1]+' }'); }  document.writeln('</style>');

var chromeWidth="994";
var legalFooterColor="#ffffff";

document.writeln('<scr'+'ipt language="javascript" src="//disney.go.com/detect/scripts/master_flash_light.js"><\/scr'+'ipt>');

try{ _gpn=/([\w-~]*)(\.htm|$|\?|\#|\.cgi\.asp)/i.exec(location.href)[1]; } catch(pn){ _gpn='home'; } if (_gpn=="" || _gpn=="index"){ _gpn="home"; }


function params(wut,qp,dflt){ dflt=(dflt==null)?'':dflt; try{r=unescape(wut.match(new RegExp(qp+"=+([^&;]*)"))[1]);}catch(qp){r=dflt;} return r; }
function addZero(vNumber){ return ((vNumber<10)?"0":"")+vNumber; }
function gid(_id){ return document.getElementById(_id); }
function inner(_gid,_text){ gid(_gid).innerHTML=_text; }
function show(){ for (i=0; i<show.arguments.length; i++){ gid(show.arguments[i]).style.display='block'; }}
function hide(){ for (i=0; i<hide.arguments.length; i++){ gid(hide.arguments[i]).style.display='none'; }}

function AddEvent(obj, evType, fn){ 
if (obj.addEventListener){ obj.addEventListener(evType, fn, false); return true; }
else if (obj.attachEvent){ var r = obj.attachEvent("on"+evType, fn); return r; }
else { return false; } 
}


function $flash(ef){ //new $flash({ movie:'', w:'100%', h:'173', bgcolor:'', base:'', vars:'', id:'' }).render();
ef.w=(ef.w==null)?'590':ef.w; ef.h=(ef.h==null)?'450':ef.h; ef.id=(ef.id==null)?'flashmovie':ef.id; ef.wmode=(ef.wmode==null)?'transparent':ef.wmode;
sendback={}
flashstr='<object id="'+ef.id+'" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+ef.w+'" height="'+ef.h+'"><param name="movie" value="'+ef.movie+((ef.vars!=null)?'?'+ef.vars:'')+'"><param name="quality" value="high"><param name="menu" value="false"><param name="wmode" value="'+ef.wmode+'"><param name="scale" value="noscale"><param name="allowScriptAccess" value="always"><param name="show" value="#ffffff">';
if (ef.base!=null){flashstr+='<param name="base" value="'+ef.base+'">'; }
if (ef.salign!=null){flashstr+='<param name="salign" value="'+ef.salign+'">'; }
if (ef.bgcolor!=null){flashstr+='<param name="bgcolor" value="'+ef.bgcolor+'">'; }
if (ef.vars!=null){flashstr+='<param name="flashVars" value="'+ef.vars+'">'; }
flashstr+='<embed name="'+ef.id+'" id="'+ef.id+'" src="'+ef.movie+((ef.vars!=null)?'?'+ef.vars:'')+'" menu="false" quality="high" pluginspage="//www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+ef.w+'" height="'+ef.h+'" swLiveConnect="true" wmode="'+ef.wmode+'" scale="noscale" allowScriptAccess="always"';
if (ef.base!=null){flashstr+=' base="'+ef.base+'"'; }
if (ef.salign!=null){flashstr+=' salign="'+ef.salign+'"'; }
if (ef.bgcolor!=null){flashstr+=' bgcolor="'+ef.bgcolor+'"'; }
if (ef.vars!=null){flashstr+=' FlashVars="'+ef.vars+'"'; }
flashstr+='></embed></object>';
sendback.toString=function(){ return flashstr; }
sendback.render=function(){ document.writeln(flashstr); }
sendback.inner=function(targetgid){ gid(targetgid).innerHTML=flashstr; }
return sendback;
}


function DoFlashDetection(){ CreateInterface(); DetectFlash(); }



function rollins(e){ /*---ROLLOVER FUNCTIONS---*/
if (window.event) { thislink = window.event.srcElement; } else if (e.target) { thislink = e.target; } else { return; }
for (j=0;j<myArraySet.length;j++){ if (myArraySet[j][0]==thislink.id+'_over'){document.getElementById(thislink.id).src=myArraySet[j][1].src; break;}}}
function unrollins(e){
if (window.event) { thislink = window.event.srcElement; } else if (e.target) { thislink = e.target; } else { return; }
for (k=0;k<myArraySet.length;k++){ if (myArraySet[k][0]==thislink.id){ document.getElementById(thislink.id).src=myArraySet[k][1].src; break;}}}
function rolloverInit(){
myArraySet=new Array(); myImages=new Array(); count=-1;
for (i=0;i<document.links.length;i++){
elk=document.links[i];
if (elk.id!=""){
bob=document.getElementById('i'+elk.id); if (bob!=null){ unName=bob.src; count++;
c3=bob.src.replace(/_off\./gi,'_ovr.').replace(/_on\./gi,'_ovr.').replace(/-off\./gi,'-on.').replace(/-1\./gi,'-2.');
thisImage=new Image(); thisImage.src=c3; myArraySet[count]=new Array(bob.id+'_over',thisImage);
elk.onmouseover=rollins; count++; thisImage=new Image(); thisImage.src=unName; myArraySet[count]=new Array(bob.id,thisImage);elk.onmouseout=unrollins;
bob.src=c3; bob.src=unName; //FLIP REAL QUICK TO PRELOAD
}}}}


/*---XML IMPORT/PARSING FUNCTIONS---*/
isSafari=(navigator.appVersion.match(/safari/gi)!=null);
function nval(_wut){ try{
returnValue=((isSafari)?((_wut.childNodes.length>0)?_wut.firstChild.nodeValue:_wut.nodeValue):((navigator.appName=="Netscape")?_wut.textContent:_wut.text)); return (returnValue!=null)?returnValue:''; }catch(nov){ return ''; }}
function gtn(_wut,_tag,index){ rt=_wut.getElementsByTagName(_tag);
return ((rt.length>1)?((index!=null)?nval(rt[index]):rt):((rt.length==0)?'':((index!=null)?rt:nval(rt[0])))); }
function gtn0(_wut,_tag){ tempgtn=gtn(_wut,_tag); if (typeof(tempgtn)=='string'){ tempgtn=gtn(_wut,_tag,0); }  return tempgtn; }
function importXML(xmlobj){
_xmlfile=xmlobj.url; _xmlRtn=xmlobj.obj; _act=xmlobj.action;

if (window.XMLHttpRequest && !(window.ActiveXObject)){
xmlDoc=new XMLHttpRequest(); xmlDoc.onreadystatechange=function(){ if (xmlDoc.readyState==4){ eval(_xmlRtn+"=xmlDoc.responseXML"); eval(_act); }}
xmlDoc.open("GET",_xmlfile,true); xmlDoc.send(null);
} else if (document.implementation && document.implementation.createDocument){
xmlDoc=document.implementation.createDocument("","",null); xmlDoc.onload=function(){ eval(_xmlRtn+"=xmlDoc"); eval(_act); }
xmlDoc.load(_xmlfile);
} else if (window.ActiveXObject){
xmlDoc=new ActiveXObject("Microsoft.XMLDOM"); xmlDoc.onreadystatechange=function(){ if (xmlDoc.readyState==4){ eval(_xmlRtn+"=xmlDoc"); eval(_act); }}
xmlDoc.load(_xmlfile);
} else  { return; }
//xmlDoc.load(_xmlfile);

}
function getAtt(_wut,_att){ return _wut.getAttribute(_att); }
function getIndexByAttribute(_wut,_att,_val){ ri=-1; if (_wut.length>0){ for (i=0; i<_wut.length; i++){ if (getAtt(_wut[i],_att)==_val){ ri=i; break; }}} return ri; }
/*---END XML IMPORT/PARSING FUNCTIONS---*/

/*---SORT ARRAY FUNCTIONS---*/
function sortByNumber(_ary,reverse){ if (reverse){ return _ary.sort(function(a,b){return(b-a)}); } else { return _ary.sort(function(a,b){return(a-b)}); }}
function randomSort(_ary){ return _ary.sort(function(){ return (Math.round(Math.random())-0.5) }) }


function randy(hi,lo){ lo=(lo==null)?1:lo;hi=(hi==null)?10:hi; do{ randall=Math.floor(Math.random()*(hi+1)); } while(!((randall>=lo)&&(randall<=hi))); return randall; }


function writeFooter(){
if (isPortal){
$png(imgRoot+"images/logos2.png","730","60","Apply Now","logos");
}

/*---TRY AUTO-REPLACING ALL LINK DISCLAIMER URLS WITH NEW STYLE---*/
for (a=0; a<document.links.length; a++){
try{ if (document.links[a].href.indexOf("GOurl")!=-1){
url=document.links[a].href.replace(/(javascript:GOurl\('|'\))/gi,"").replace(/ *$/mg,'').replace(/^ */mg,'');
if (url.indexOf('http')==-1){ url="http://"+url; }
document.links[a].href="http://home.disney.go.com/guestservices/disclaimers/redirect?destination="+escape(url);
document.links[a].target="_blank";
}}catch(e){}}

}

function GOurl(url){
url=url.replace(/ *$/mg,'').replace(/^ */mg,'');
if (url.indexOf('http')==-1){ url="http://"+url; }
window.open("http://home.disney.go.com/guestservices/disclaimers/redirect?destination="+escape(url));
}


var isIE6=(navigator.appVersion.indexOf("MSIE 6")!=-1);
var imgType=(isIE6)?"gif":"png";
var imgRoot=(location.href.indexOf('.go.com')!=-1 || location.href.indexOf('.online.disney.com')!=-1)?"":"//disney.go.com/disneycareers/dimg/";
var linkRoot=(location.href.indexOf('.go.com')!=-1 || location.href.indexOf('.online.disney.com')!=-1)?"":"http://disney.go.com/disneycareers/dimg/";
var applyNowLink="https://disney.recruitmax.com//main/careerportal/default.cfm?szCareerPortalID=194&szUniqueCareerPortalID=6148d8bc-69a0-4c20-ac4e-4784d1a2dbc2";
var isPortal=(location.href.indexOf('.go.com')==-1 && location.href.indexOf('.online.disney.com')==-1);

function writeNav(_active){
if (_active==null || _active==""){ _active=_gpn; }

document.writeln('<div style="width:39px; position:relative;">\
<div id="nav-holder" style="position:absolute; width:197px; left:-171px; top:-15px;">');

if (_active=="home"){
document.writeln('<div id="bg-nav-home" style="background:url('+imgRoot+'images/nav-home-on.'+imgType+') no-repeat;"><a href="'+linkRoot+'index.html" id="nav-home"><img src="//disney.go.com/disneycareers/dimg/images/blank.gif" width="197" height="30" border="0" alt="Home"></a></div>');
} else {
document.writeln('<div id="bg-nav-home" style="background:url('+imgRoot+'images/nav-home-off.'+imgType+') no-repeat;"><a href="'+linkRoot+'index.html" id="nav-home"><img src="//disney.go.com/disneycareers/dimg/images/blank.gif" width="197" height="30" border="0" alt="Home"></a></div>');

gid('nav-home').onmouseover=function(){ gid('bg-nav-home').style.background="url("+imgRoot+"images/nav-home-over."+imgType+") no-repeat"; }
gid('nav-home').onmouseout=function(){ gid('bg-nav-home').style.background="url("+imgRoot+"images/nav-home-off."+imgType+") no-repeat"; }

}

if (_active=="about-us"){
document.writeln('<div id="bg-nav-aboutus" style="background:url('+imgRoot+'images/nav-aboutus-on.'+imgType+') no-repeat;"><a href="'+linkRoot+'about-us.html" id="nav-aboutus"><img src="//disney.go.com/disneycareers/dimg/images/blank.gif" width="197" height="30" border="0" alt="About Us"></a></div>');

document.writeln('<div align="right" style="padding-right:3px;">\
<div style="width:176px; background:url(//disney.go.com/disneycareers/dimg/images/subnav-background.jpg) top right repeat-y; text-align:right;">\
<div style="padding:2px 5px 2px 0;">\
<a href="'+linkRoot+'business-units.html">Business Units</a><br>\
<a href="'+linkRoot+'dimg-today.html">DIMG Today</a><br>\
<a href="'+linkRoot+'diversity.html">Commitment to Diversity</a><br>\
<a href="'+linkRoot+'avalanche.html">Avalanche</a><br>\
<a href="'+linkRoot+'junction-point.html">Junction Point</a><br>\
<a href="'+linkRoot+'propaganda.html">Propaganda</a><br>\
</div>\
</div>\
</div>');

} else {
document.writeln('<div id="bg-nav-aboutus" style="background:url('+imgRoot+'images/nav-aboutus-off.'+imgType+') no-repeat;"><a href="'+linkRoot+'about-us.html" id="nav-aboutus"><img src="//disney.go.com/disneycareers/dimg/images/blank.gif" width="197" height="30" border="0" alt="About Us"></a></div>');

gid('nav-aboutus').onmouseover=function(){ gid('bg-nav-aboutus').style.background="url("+imgRoot+"images/nav-aboutus-over."+imgType+") no-repeat"; }
gid('nav-aboutus').onmouseout=function(){ gid('bg-nav-aboutus').style.background="url("+imgRoot+"images/nav-aboutus-off."+imgType+") no-repeat"; }

}

if (_active=="career-opportunities"){
document.writeln('<div id="bg-nav-careeropportunities" style="background:url('+imgRoot+'images/nav-careeropportunities-on.'+imgType+') no-repeat;"><a href="'+linkRoot+'career-opportunities.html" id="nav-careeropportunities"><img src="//disney.go.com/disneycareers/dimg/images/blank.gif" width="197" height="30" border="0" alt="Career Opportunities"></a></div>');

document.writeln('<div align="right" style="padding-right:3px;">\
<div style="width:176px; background:url(//disney.go.com/disneycareers/dimg/images/subnav-background.jpg) top right repeat-y; text-align:right;">\
<div style="padding:2px 5px 2px 0;">\
<a href="'+applyNowLink+'">Apply Now</a><br>\
<a href="'+linkRoot+'career-opportunities-faq.html">FAQ</a><br>\
</div>\
</div>\
</div>');

} else {
document.writeln('<div id="bg-nav-careeropportunities" style="background:url('+imgRoot+'images/nav-careeropportunities-off.'+imgType+') no-repeat;"><a href="'+linkRoot+'career-opportunities.html" id="nav-careeropportunities"><img src="//disney.go.com/disneycareers/dimg/images/blank.gif" width="197" height="30" border="0" alt="Career Opportunities"></a></div>');

gid('nav-careeropportunities').onmouseover=function(){ gid('bg-nav-careeropportunities').style.background="url("+imgRoot+"images/nav-careeropportunities-over."+imgType+") no-repeat"; }
gid('nav-careeropportunities').onmouseout=function(){ gid('bg-nav-careeropportunities').style.background="url("+imgRoot+"images/nav-careeropportunities-off."+imgType+") no-repeat"; }

}

if (_active=="student-programs"){
document.writeln('<div id="bg-nav-studentprogram" style="background:url('+imgRoot+'images/nav-studentprogram-on.'+imgType+') no-repeat;"><a href="'+linkRoot+'student-programs.html" id="nav-studentprogram"><img src="//disney.go.com/disneycareers/dimg/images/blank.gif" width="197" height="30" border="0" alt="Student Programs"></a></div>');

document.writeln('<div align="right" style="padding-right:3px;">\
<div style="width:176px; background:url(//disney.go.com/disneycareers/dimg/images/subnav-background.jpg) top right repeat-y; text-align:right;">\
<div style="padding:2px 5px 2px 0;">\
<a href="'+linkRoot+'college-tour-dates.html">College Tour Dates</a><br>\
<a href="'+linkRoot+'day-in-the-life.html">Day in the Life of a DIMG Intern</a><br>\
<a href="'+linkRoot+'intern-quotes.html">Intern Quotes</a><br>\
<a href="'+linkRoot+'up-to-now.html">What Are They Up To Now?</a><br>\
<a href="'+linkRoot+'faq.html">FAQ</a><br>\
<a href="'+linkRoot+'student-poll.html">Student Poll</a><br>\
<a href="'+linkRoot+'canadian-coop.html">Canadian Students</a><br>\
</div>\
</div>\
</div>');

} else {
document.writeln('<div id="bg-nav-studentprogram" style="background:url('+imgRoot+'images/nav-studentprogram-off.'+imgType+') no-repeat;"><a href="'+linkRoot+'student-programs.html" id="nav-studentprogram"><img src="//disney.go.com/disneycareers/dimg/images/blank.gif" width="197" height="30" border="0" alt="Student Program"></a></div>');

gid('nav-studentprogram').onmouseover=function(){ gid('bg-nav-studentprogram').style.background="url("+imgRoot+"images/nav-studentprogram-over."+imgType+") no-repeat"; }
gid('nav-studentprogram').onmouseout=function(){ gid('bg-nav-studentprogram').style.background="url("+imgRoot+"images/nav-studentprogram-off."+imgType+") no-repeat"; }

}

if (_active=="benefits"){
document.writeln('<div id="bg-nav-benefits" style="background:url('+imgRoot+'images/nav-benefits-on.'+imgType+') no-repeat;"><a href="'+linkRoot+'benefits.html" id="nav-benefits"><img src="//disney.go.com/disneycareers/dimg/images/blank.gif" width="197" height="30" border="0" alt="Benefits"></a></div>');
} else {
document.writeln('<div id="bg-nav-benefits" style="background:url('+imgRoot+'images/nav-benefits-off.'+imgType+') no-repeat;"><a href="'+linkRoot+'benefits.html" id="nav-benefits"><img src="//disney.go.com/disneycareers/dimg/images/blank.gif" width="197" height="30" border="0" alt="Benefits"></a></div>');

gid('nav-benefits').onmouseover=function(){ gid('bg-nav-benefits').style.background="url("+imgRoot+"images/nav-benefits-over."+imgType+") no-repeat"; }
gid('nav-benefits').onmouseout=function(){ gid('bg-nav-benefits').style.background="url("+imgRoot+"images/nav-benefits-off."+imgType+") no-repeat"; }

}

if (_active=="community"){
document.writeln('<div id="bg-nav-community" style="background:url('+imgRoot+'images/nav-community-on.'+imgType+') no-repeat;"><a href="'+linkRoot+'community.html" id="nav-community"><img src="//disney.go.com/disneycareers/dimg/images/blank.gif" width="197" height="30" border="0" alt="Community"></a></div>');

document.writeln('<div align="right" style="padding-right:3px;">\
<div style="width:176px; background:url(//disney.go.com/disneycareers/dimg/images/subnav-background.jpg) top right repeat-y; text-align:right;">\
<div style="padding:2px 5px 2px 0;">\
<a href="'+linkRoot+'dimg-community-voluntears.html">DIMG Community Volunt<i>EARS</i></a><br>\
</div>\
</div>\
</div>');

} else {
document.writeln('<div id="bg-nav-community" style="background:url('+imgRoot+'images/nav-community-off.'+imgType+') no-repeat;"><a href="'+linkRoot+'community.html" id="nav-community"><img src="//disney.go.com/disneycareers/dimg/images/blank.gif" width="197" height="30" border="0" alt="Community"></a></div>');

gid('nav-community').onmouseover=function(){ gid('bg-nav-community').style.background="url("+imgRoot+"images/nav-community-over."+imgType+") no-repeat"; }
gid('nav-community').onmouseout=function(){ gid('bg-nav-community').style.background="url("+imgRoot+"images/nav-community-off."+imgType+") no-repeat"; }

}

if (_active=="locations"){
document.writeln('<div id="bg-nav-locations" style="background:url('+imgRoot+'images/nav-locations-on.'+imgType+') no-repeat;"><a href="'+linkRoot+'locations.html" id="nav-locations"><img src="//disney.go.com/disneycareers/dimg/images/blank.gif" width="197" height="30" border="0" alt="Locations"></a></div>');
} else {
document.writeln('<div id="bg-nav-locations" style="background:url('+imgRoot+'images/nav-locations-off.'+imgType+') no-repeat;"><a href="'+linkRoot+'locations.html" id="nav-locations"><img src="//disney.go.com/disneycareers/dimg/images/blank.gif" width="197" height="30" border="0" alt="Locations"></a></div>');

gid('nav-locations').onmouseover=function(){ gid('bg-nav-locations').style.background="url("+imgRoot+"images/nav-locations-over."+imgType+") no-repeat"; }
gid('nav-locations').onmouseout=function(){ gid('bg-nav-locations').style.background="url("+imgRoot+"images/nav-locations-off."+imgType+") no-repeat"; }

}

if (_active=="canada-privacy"){
document.writeln('<div id="bg-nav-canadaprivacy" style="background:url('+imgRoot+'images/nav-canadaprivacy-on.'+imgType+') no-repeat;"><a href="'+linkRoot+'canada-privacy.html" id="nav-canadaprivacy"><img src="//disney.go.com/disneycareers/dimg/images/blank.gif" width="197" height="30" border="0" alt="Canada Privacy Note"></a></div>');
} else {
document.writeln('<div id="bg-nav-canadaprivacy" style="background:url('+imgRoot+'images/nav-canadaprivacy-off.'+imgType+') no-repeat;"><a href="'+linkRoot+'canada-privacy.html" id="nav-canadaprivacy"><img src="//disney.go.com/disneycareers/dimg/images/blank.gif" width="197" height="30" border="0" alt="Canada Privacy Note"></a></div>');

gid('nav-canadaprivacy').onmouseover=function(){ gid('bg-nav-canadaprivacy').style.background="url("+imgRoot+"images/nav-canadaprivacy-over."+imgType+") no-repeat"; }
gid('nav-canadaprivacy').onmouseout=function(){ gid('bg-nav-canadaprivacy').style.background="url("+imgRoot+"images/nav-canadaprivacy-off."+imgType+") no-repeat"; }

}

document.writeln('<br>\
<div style="position:relative: width:197px;">\
<div style="position:absolute; left:-6px;">');

if (location.href.indexOf('.go.com')!=-1 || location.href.indexOf('.online.disney.com')!=-1){
document.write('<a href="'+applyNowLink+'">');
$png(imgRoot+"images/button-apply-now.png","182","46","Apply Now");
document.write('</a>');
} else {
document.write('<img src="'+imgRoot+'images/promo-innovative-companies.gif" width="179" height="139" border="0" alt="">');
}
document.writeln('<br><br>');

/*if (_active=="student-programs" || _active=="home"){
document.write('<a href="http://a.media.global.go.com/disneycareers/dimg/Disney_Your_Take_Creative_Competition.pdf" target="_blank">');
$png(imgRoot+"images/promo-topcoder.png","184","141","Got Creative Talent? Compete for $1500");
document.write('</a><br><br>');
}*/

if (_active=="home" || _active=="student-programs"){

document.write('<a href="javascript:GOurl(\'https://twitter.com/DIMGrecruiting\')">');
$png(imgRoot+"images/button-twitter.png","182","46","Follow Us on Twitter");
document.write('</a><br><br>');

document.write('<a href="javascript:GOurl(\'http://www.facebook.com/dimg.recruiting\')">');
$png(imgRoot+"images/button-facebook.png","182","46","Follow Us on Facebook");
document.write('</a><br><br>');

/*document.write('<a href="javascript:GOurl(\'\')">');
$png(imgRoot+"images/button-linkedin.png","182","46","Follow Us on LinkedIn");
document.write('</a><br><br>');*/

}

$png(imgRoot+"images/promo-diversity.png","184","141");
document.writeln('<br><br>');

document.writeln('</div>\
</div>\
</div>\
</div>');

}

function $png(_src,_w,_h,_alt,_target){
if (_alt==null){ _alt=""; }
pngoutput='<span style="width:'+_w+'px; height:'+_h+'px; display:inline-block; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+_src+'\');"><img style="filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);" src="'+_src+'" width="'+_w+'" height="'+_h+'" border="0" alt="'+_alt+'"></span>';
if (_target==null){ document.write(pngoutput); } else { inner(_target,pngoutput); }
}

function doPreloadImages(){
preloadImages=[];
preloadImages.push(new Image().src=imgRoot+"images/nav-home-over."+imgType);
preloadImages.push(new Image().src=imgRoot+"images/nav-aboutus-over."+imgType);
preloadImages.push(new Image().src=imgRoot+"images/nav-careeropportunities-over."+imgType);
preloadImages.push(new Image().src=imgRoot+"images/nav-studentprogram-over."+imgType);
preloadImages.push(new Image().src=imgRoot+"images/nav-benefits-over."+imgType);
preloadImages.push(new Image().src=imgRoot+"images/nav-community-over."+imgType);
preloadImages.push(new Image().src=imgRoot+"images/nav-locations-over."+imgType);
}

AddEvent(window,'load',doPreloadImages());