function switchOn(name){
	if (checkIt()){
		obj = document.getElementById("n_" + name);
		obj.src = "RadControlsResources/NotSet/Menu/Img/nav_" + name + "_on.gif";
	}
}

function switchOff(name){
	if (checkIt()){
		obj = document.getElementById("n_" + name);
		obj.src = "RadControlsResources/NotSet/Menu/Img/nav_" + name + "_off.gif";
	}
}

function checkIt(){
	var detect = navigator.userAgent.toLowerCase();
	place = detect.indexOf('safari') + 1;
	return place;
}