$(document).ready(function(){
	var warningText = "You are now leaving Wright's website.\n" +
					  "These related links are provided as a service to you; however,\n" +
					  "Wright makes no endorsements, warranties, or representations,\n" +
					  "express or implied, regarding content on these websites. You are\n" +
					  "responsible for making an independent determination of the\n" +
					  "qualifications of their content and whether it suits your\n" +
					  "particular needs.";

	$("a").each(function(index){
		if ($(this).attr("href")) {
			if (($(this).attr("href").indexOf("http") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf(".") > -1 &&
				 $(this).attr("href").charAt(0) != "/" &&
				 $(this).attr("href").charAt(0) != "." &&
				 $(this).attr("href").charAt(0) != "#" &&
				 $(this).attr("href").charAt(0) != "?" &&
				 $(this).attr("href").charAt(0) != "&" &&
				 $(this).attr("href").split("/")[0].indexOf(".asp") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf(".htm") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf(".jpg") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf(".jpe") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf(".gif") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf(".png") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf(".tif") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf(".swf") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf(".mp4") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf(".mpg") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf(".wmv") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf(".flv") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf(".avi") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf(".zip") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf(".pdf") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf(".doc") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf("wmt.com") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf("wmt-emea.com") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf("inbone.com") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf("hips4fastrecovery.com") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf("handhealth.net") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf("azhippain.com") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf("corporate-ir.net") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf("javascript:") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf("mailto:") < 0 &&
				 $(this).attr("href").split("/")[0].indexOf("tel:") < 0) ||
				  
					($(this).attr("href").indexOf("http") > -1 &&
					 $(this).attr("href").indexOf("wmt.com") < 0 &&
					 $(this).attr("href").indexOf("wmt-emea.com") < 0 &&
					 $(this).attr("href").indexOf("inbone.com") < 0 &&
					 $(this).attr("href").indexOf("hips4fastrecovery.com") < 0 &&
					 $(this).attr("href").indexOf("handhealth.net") < 0 &&
					 $(this).attr("href").indexOf("azhippain.com") < 0 &&
					 $(this).attr("href").indexOf("corporate-ir.net") < 0)) {

				$(this).addClass("external-link");
				$(this).removeAttr("onclick");
			}
		}
	});
	
	$("a.external-link").click(function(){
		
		if (confirm(warningText))
			return true;
		
		return false;

	});
});
