browserName = navigator.appName.substring(0,8);
browserVer = parseFloat(navigator.appVersion);

var Browser = 0;

if (browserName == 'Microsof' && browserVer < 4){Browser = 0;}
if (browserName == 'Microsof' && browserVer >= 4){Browser = 1;}
if (browserName == 'Netscape' && browserVer < 4){Browser = 1;}
if (browserName == 'Netscape' && browserVer >= 4){Browser = 1;}

if(Browser == 1){
img = new Array(16);
for (m=0; m<=16; m++){
img[m] = new Image();
}
img[0].src = 'images/home.gif';
img[1].src = 'images/home_over.gif';
img[2].src = 'images/cellbook.gif';
img[3].src = 'images/cellbook_over.gif';
img[4].src = 'images/wallpapers.gif';
img[5].src = 'images/wallpapers_over.gif';
img[6].src = 'images/ringtones.gif';
img[7].src = 'images/ringtones_over.gif';
img[8].src = 'images/inspirations.gif';
img[9].src = 'images/inspirations_over.gif';
img[10].src = 'images/howto.gif';
img[11].src = 'images/howto_over.gif';
img[12].src = 'images/compat.gif';
img[13].src = 'images/compat_over.gif';
img[14].src = 'images/contact.gif';
img[15].src = 'images/contact_over.gif';
}
function m_over(index){
if(Browser == 1){
	if(index == 1){
		setTimeout('document.i1.src = img[1].src',0);
	}
	if(index == 2){
		setTimeout('document.i2.src = img[3].src',0);
	}
	if(index == 3){
		setTimeout('document.i3.src = img[5].src',0);
	}	
	if(index == 4){
		setTimeout('document.i4.src = img[7].src',0);
	}		
	if(index == 5){
		setTimeout('document.i5.src = img[9].src',0);
	}		
	if(index == 6){
		setTimeout('document.i6.src = img[11].src',0);
	}		
	if(index == 7){
		setTimeout('document.i7.src = img[13].src',0);
	}		
	if(index == 8){
		setTimeout('document.i8.src = img[15].src',0);
	}		
  }
}
function m_out(index){
if(Browser == 1){
	if(index == 1){
		setTimeout('document.i1.src = img[0].src',0);
	}
	if(index == 2){
		setTimeout('document.i2.src = img[2].src',0);
	}
	if(index == 3){
		setTimeout('document.i3.src = img[4].src',0);
	}	
	if(index == 4){
		setTimeout('document.i4.src = img[6].src',0);
	}	
	if(index == 5){
		setTimeout('document.i5.src = img[8].src',0);
	}		
	if(index == 6){
		setTimeout('document.i6.src = img[10].src',0);
	}					
	if(index == 7){
		setTimeout('document.i7.src = img[12].src',0);
	}					
	if(index == 8){
		setTimeout('document.i8.src = img[14].src',0);
	}					
  }
}