object of functions

by Adam Kinnucane

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/dot-luv/jquery-ui.css">

JavaScript

var Functions = { 
DoThis: function() { alert("do this"); } ,  
DoThat: function() { alert("do that"); } 
};

 //alerts "do this"
Functions.DoThis();
Functions.DoThat();
//alerts "do this"