// rollover for all subsections, besides film & more
 

if(document.images) {
  
 var linksoff = new Image();    //all links off
 var topoff = new Image();
 var filmoff = new Image();  
 var filmon = new Image();
 var filmtop = new Image();
 var specfeaton = new Image();
 var specfeattop = new Image();
 var timeon = new Image();
 var timetop = new Image();
 var mapson = new Image();
 var mapstop = new Image();
 var peopleon = new Image();
 var peopletop = new Image();
 var teachon = new Image();
 var teachtop = new Image();
 var kidshomeoff = new Image();
 var kidson = new Image();
 var homeon = new Image(); 
 var featureon = new Image(); 
 var featureoff = new Image(); 
 
  
 linksoff.src = "../subimages/links_off.gif";
 topoff.src = "../subimages/top_off.jpg";
 
 filmoff.src = "../subimages/film_off.gif";  
 filmon.src = "../subimages/film_on.gif";
 filmtop.src = "../subimages/film_top.jpg";
 specfeaton.src = "../subimages/specfeat_on.gif";
 specfeattop.src = "../subimages/specfeat_top.jpg";
 timeon.src = "../subimages/time_on.gif";
 timetop.src = "../subimages/time_top.jpg";
 mapson.src = "../subimages/maps_on.gif";
 mapstop.src = "../subimages/maps_top.jpg";
 peopleon.src = "../subimages/people_on.gif";
 peopletop.src = "../subimages/people_top.jpg";
 teachon.src = "../subimages/teach_on.gif";
 teachtop.src = "../subimages/teach_top.jpg";
 kidshomeoff.src = "../subimages/k_h_off.gif";
 kidson.src = "../subimages/kids_on.gif";
 homeon.src = "../subimages/home_on.gif";
 featureon.src = "../subimages/logo_on.jpg";
 featureoff.src = "../subimages/logo.gif"; 
}

//prevents flashing ..

var thisid = setTimeout("resetphoto(thispage)",10000);
  
  
function offT() {
 thisid = setTimeout("resetphoto(thispage)",10);
 }
 
function resetphoto(imgnamealso) {
 document.linksmenu.src = eval(imgnamealso + 'on.src');
 document.descrip.src = eval('topoff.src');
}
//end of prevent flashing 




// for film..
function offfilm(imgName) {
 if(document.images) {
 document[imgName].src = eval(imgName + 'off.src');
 offT();
 }
}

function onfilm(imgName) {
 if(document.images) {
 clearTimeout(thisid);
 document.linksmenu.src = eval('linksoff.src');
 document[imgName].src = eval(imgName + 'on.src');
 document.descrip.src = eval(imgName + 'top.src');
 }
}


//general kids | home

function offk(imgName) {
 if(document.images) {
 document.kidhome.src = eval('kidshomeoff.src');
 }
}

function onk(imgName) {
 if(document.images) {
 document.kidhome.src = eval(imgName + 'on.src');
 }
}


//home button with graphic

function off(imgName) {
 if(document.images) {
 document[imgName].src = eval(imgName + 'off.src');
 }
}

function on(imgName) {
 if(document.images) {
 document[imgName].src = eval(imgName + 'on.src');
 }
}


//all links

function offmenu(imgName) {
 if(document.images) {
 offT();
 }
}

function onmenu(imgName) {
 if(document.images) {
 clearTimeout(thisid);
 document.linksmenu.src = eval(imgName + 'on.src');
 document.descrip.src = eval(imgName + 'top.src');
 }
}
