// rollover for all Talking Heads Sections

var timeout_MerchantId;
var timeout_MerchantInternalId;

function preload_merchantInternal() {
if(document.images) {
  var ImgArray = new Array();
  for (var i = 0; i < 10; i++) {
    ImgArray[i] = new Image();
  }    
	ImgArray[0].src = "images/merchant_intrnl_essays.gif";
	ImgArray[1].src = "images/merchant_intrnl_shakespeare.gif";
	ImgArray[2].src = "images/merchant_intrnl_ntof.gif";
	ImgArray[3].src = "images/merchant_intrnl_synopsis.gif";
	ImgArray[4].src = "images/merchant_intrnl_words.gif";
	ImgArray[5].src = "images/merchant_intrnl_whoswho.gif";
	ImgArray[6].src = "images/merchant_intrnl_tguide.gif";
	ImgArray[7].src = "images/merchant_intrnl_forum.gif";
	ImgArray[8].src = "images/merchant_intrnl_links.gif";
	ImgArray[9].src = "images/merchant_intrnl_alloff.gif";
  }
}


function preload_merchantEssay() {
if(document.images) {
  var ImgArray = new Array();
  for (var i = 0; i < 12; i++) {
    ImgArray[i] = new Image();
  }    
	ImgArray[0].src = "images/nunn_descrip.gif";
	ImgArray[1].src = "images/nunn_square.gif";
	ImgArray[2].src = "images/nunn_square_over.gif";
	ImgArray[3].src = "images/national_descrip.gif";
	ImgArray[4].src = "images/national_square.gif";
	ImgArray[5].src = "images/national_square_over.gif";
	ImgArray[6].src = "images/shylock_descrip.gif";
	ImgArray[7].src = "images/shylock_square.gif";
	ImgArray[8].src = "images/shylock_square_over.gif";
	ImgArray[9].src = "images/shortest_descrip.gif";
	ImgArray[10].src = "images/shortest_square.gif";
	ImgArray[11].src = "images/shortest_square_over.gif";
  }
}

function reset_Menu() {
	var imgTurl;
	if(document.images) {
  		imgTurl = 'homeimages/rollover_default.jpg'; 
   		document.textroll.src=imgTurl;	
	}
}

function reset_InternalMenu(imgRurl) {
	if(document.images) {
   		document.merchant_nav.src=imgRurl;
	}
}


function off_nav(thisNav, imgName) {
	var objStr,obj, imgRurl, imgTurl;
	if(document.images) {
		if (thisNav == 'm') {  
	  		objStr = 'document.m_' + imgName;
      		obj = eval(objStr);      
      		imgRurl = 'homeimages/merchant_' + imgName + '.jpg';
      		obj.src = imgRurl;
      		timeout_MerchantId = setTimeout("reset_Menu()",10);      		
      		} 
      	else if (thisNav == 'm_ei') { 
 	  		objStr = 'document.m_' + imgName;
      		obj = eval(objStr);      
      		imgRurl = 'homeimages/merchant_' + imgName + '.jpg';
      		obj.src = imgRurl;
      		timeout_MerchantId = setTimeout("reset_Menu()",10);      		
      		}  
      	else if (thisNav == 'f') { 
 	  		objStr = 'document.f_' + imgName;
      		obj = eval(objStr);      
      		imgRurl = 'homeimages/feature_' + imgName + '.gif';
      		obj.src = imgRurl;
      		timeout_MerchantId = setTimeout("reset_Menu()",10);    
      		}  
      	else if (thisNav == 'i') { 
      		imgRurl = 'images/merchant_intrnl_' + imgName + '.gif';
      		timeout_MerchantInternalId = setTimeout("reset_InternalMenu(\"" + imgRurl + "\")",10); 
      		}
      	else if (thisNav == 'ei') { 
	  		objStr = 'document.' + imgName + '_s';
      		obj = eval(objStr);
      		imgTurl = 'images/default_descrip.gif';      
      		imgRurl = 'images/' + imgName + '_square.gif';
      		document.descrip.src=imgTurl;
      		obj.src = imgRurl;  
      		} 	     		     
	}
}

function on_nav(thisNav, imgName) {
	var objStr,obj, imgRurl, imgTurl;
	if(document.images) {
		if (thisNav == 'm') {
			clearTimeout(timeout_MerchantId);
	  		objStr = 'document.m_' + imgName;
      		obj = eval(objStr);
      		imgTurl = 'homeimages/merchant_' + imgName + '_text.gif';      
      		imgRurl = 'homeimages/merchant_' + imgName + '_over.jpg';
      		document.textroll.src=imgTurl;
      		obj.src = imgRurl;      		
      		}
       	else if (thisNav == 'm_ei') {
      		clearTimeout(timeout_MerchantId);
      		objStr = 'document.m_' + imgName;
      		obj = eval(objStr);
      		imgTurl = 'homeimages/merchant_essays_text.gif';      
      		imgRurl = 'homeimages/merchant_' + imgName + '_over.jpg';  
      		document.textroll.src=imgTurl;
      		obj.src = imgRurl;
      		}
     	else if (thisNav == 'f') {
      		clearTimeout(timeout_MerchantId);
      		objStr = 'document.f_' + imgName;
      		obj = eval(objStr);
      		imgTurl = 'homeimages/feature_' + imgName + '_text.gif';
      		imgRurl = 'homeimages/feature_' + imgName + '_over.gif';  
      		document.textroll.src=imgTurl;
      		obj.src = imgRurl;
      		}
      	else if (thisNav == 'i') { 
      		clearTimeout(timeout_MerchantInternalId);
      		imgRurl = 'images/merchant_intrnl_' + imgName + '.gif';
      		document.merchant_nav.src=imgRurl;
      		}
       	else if (thisNav == 'ei') {
       		document.nunn_s.src="images/nunn_square.gif";
       		document.national_s.src="images/national_square.gif";
       		document.shylock_s.src="images/shylock_square.gif";
       		document.shortest_s.src="images/shortest_square.gif";
	  		objStr = 'document.' + imgName + '_s';
      		obj = eval(objStr);
      		imgTurl = 'images/' + imgName + '_descrip.gif';      
      		imgRurl = 'images/' + imgName + '_square_over.gif';
      		document.descrip.src=imgTurl;
      		obj.src = imgRurl;  
      		} 
       	else if (thisNav == 'ei_off') {
       		document.nunn_s.src="images/nunn_square.gif";
       		document.national_s.src="images/national_square.gif";
       		document.shylock_s.src="images/shylock_square.gif";
       		document.shortest_s.src="images/shortest_square.gif";
	  		objStr = 'document.' + imgName + '_s';
      		obj = eval(objStr);
      		imgTurl = 'images/default_descrip.gif';      
      		imgRurl = 'images/' + imgName + '_square_over.gif';
      		document.descrip.src=imgTurl;
      		obj.src = imgRurl;  
      		}          		       		
	}
}

