function updatePage(){
	// Warranty move
	if ( location.hash == "#/warranty" ) {
		location.replace( 'http://www.pennzoilwarranty.com/en-ca' );
		return;
	}

	if ( location.hash == "#/fr/warranty" ) {
		location.replace( 'http://www.pennzoilwarranty.com/fr-ca' );
		return;
	}

	if ( location.hash == "#/advertising" ) {
		location.replace( 'http://www.pennzoil.ca' );
		return;
	}

	if ( location.hash == "#/fr/advertising" ) {
		location.replace( 'http://www.pennzoil.ca/fr' );
		return;
	}

	if(location.href.indexOf("#") == -1){
		if(location.pathname.length>1){
			var newURL = location.protocol+"//"+location.hostname+"/#"+location.pathname+ location.search;
			location.replace(newURL);
		}
	}
}

