Possible Duplicates:
What does this JavaScript snippet mean?
Location of parenthesis for auto-executing anonymous JavaScript functions?
(function(){
//something here...
})() <--//This part right here.
What exactly is this )()
?
What if I change it to this ())
?
(function(){
//something here...
}()) <--//Like this