var browserURL = window.location.href;
var redirectURL = 0;

function reDirect() {
     if (browserURL.match("www.whatstinks.com")) {
		redirectURL = "/home.jsp";
    }else if (browserURL.match("whatstinks.com")) {
		redirectURL = "/home.jsp";
	}
	if  (!redirectURL == 0) {
        window.location.href = redirectURL;
    }
}

reDirect();