<!--RollOver Script-->
 if(navigator.appVersion.charAt(0) >= "3") {
	var profile = new Array();
	profile['profile1'] = new Image();  profile['profile1'].src = "images/btn1.gif";
	profile['profileover1'] = new Image();  profile['profileover1'].src = "images/btn1_over.gif";
	
	
}


function profile_over(a,b) {
	if(navigator.appVersion.charAt(0) >= "3") {
		document.images[a].src = profile[b].src;
	} else { 
	}
}
function profile_out(a,b) {
	document.images[a].src = profile[b].src;
}


