Thanks DLively, I had read that post from your original thread (thanks to the link provided by Malice).

if I understand that statement correctly then I should also be able to go

Code:
var example(){
insert function code here;
}



and it would have the same effect as

Code:
function example(){
insert function code here;
}



and I should be able to call the first example the same way as the second

Code:
example();



is that right or am I not understanding this properly?