Example 1 is a basic implementation where only the coordinates are given.
$('#gmap').staticgmapzoom('-33.933254,151.002917');
Example 2 shows you a implementation where the size of the map and the zoom levels have been changed.
var options = {mapWidth:300,mapHeight:300,mapZoom1:10,mapZoom12:8,mapZoom3:15};
$('#gmap').staticgmapzoom('-33.933254,151.002917',options);