sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);


function confirmation(page) {
	var answer = confirm("Please note that you are about to leave a King Pharmaceuticals Canada, Inc. (/"King/") website and enter a third-party website. King does not review the information on third-party websites and/or databases for content, accuracy, completeness, or compliance with any applicable statute, rule, or regulation. King makes no representation as to the accuracy, completeness, compliance or any other aspect of the information contained on such website and/or database, nor does King necessarily endorse such website, database, and/or content therein.")
	if (answer){
		window.open = page;
	}
}




