First of all, you can't use indexOf that way. It returns -1, when it's not found which isn't false.
It makes a lot more sense to me to just use the built-in parsing of the hash value in the location object. I'd suggest doing it this way:
if (window.location.hash == "#brandpartners") {
$("#brandpartners").addClass("specialbrand");
}
I don't know your URL structure, but there shouldn't be a need for a slash after the # for a simple hash value. But, if you insist on using the slash, it would look like this:
if (window.location.hash == "#/brandpartners") {
$("#brandpartners").addClass("specialbrand");
}