Jade Template load function

I have problem with loading function from outside script. Here is my code:

page.jade

doctype
html
head
  script(src="/script.js")
body
 -if( isGuest() )
    //do something

script.js

function isGuest(){
 return getCookie("token");
}

When I load this its give me error "undefined is not a function"