diff --git a/www/api/cache-view.html b/www/api/cache-view.html
index fde7ae0..c781c02 100644
--- a/www/api/cache-view.html
+++ b/www/api/cache-view.html
@@ -49,6 +49,19 @@
 </div>
 <div class="sep"></div>

 <div class="menu">
+  <a title="Binary Releases" href="../../www/binary-releases.html">Binary Releases</a>
+</div>
+<div class="sub">
+    <a title="Binary Release: Unix" href="../../www/binary-releases.html#unix">Unix</a>
+</div>
+<div class="sub">
+    <a title="Binary Release: MacOS X" href="../../www/binary-releases.html#macosx">Mac OS X</a>
+</div>
+<div class="sub">
+    <a title="Binary Release: Windows" href="../../www/binary-releases.html#windows">Windows</a>
+</div>
+<div class="sep"></div>

+<div class="menu">
   <a title="Command-line Tools" href="../../www/command-line-tools.html">Command-line Tools</a>
 </div>
 <div class="sub">
@@ -75,9 +88,6 @@
 <div class="sub">
     <a title="Program Interface: Magick++" href="../../Magick++/">Magick++</a>
 </div>
-<div class="menu">
-  <a title="Architecture" href="../../www/architecture.html">Architecture</a>
-</div>
 <div class="sep"></div>

 <div  class="menu">
    <a title="Install from Source" href="../../www/install-source.html">Install from Source</a>
@@ -89,21 +99,11 @@
     <a title="Install from Source: Windows" href="../../www/install-source.html#windows">Windows</a>
  </div>
 <div class="menu">
-  <a title="Binary Releases" href="../../www/binary-releases.html">Binary Releases</a>
-</div>
-<div class="sub">
-    <a title="Binary Release: Unix" href="../../www/binary-releases.html#unix">Unix</a>
-</div>
-<div class="sub">
-    <a title="Binary Release: MacOS X" href="../../www/binary-releases.html#macosx">Mac OS X</a>
-</div>
-<div class="sub">
-    <a title="Binary Release: Windows" href="../../www/binary-releases.html#windows">Windows</a>
-</div>
-<div class="menu">
   <a title="Resources" href="../../www/resources.html">Resources</a>
 </div>
-<div class="sep"></div>

+<div class="menu">
+  <a title="Architecture" href="../../www/architecture.html">Architecture</a>
+</div>
 <div class="menu">
   <a title="Download" href="../../www/download.html">Download</a>
 </div>
@@ -272,8 +272,8 @@
 
 <pre class="code">
   PixelPacket *GetCacheViewAuthenticPixels(CacheView *cache_view,
-    const long x,const long y,const unsigned long columns,
-    const unsigned long rows,ExceptionInfo *exception)
+    const ssize_t x,const ssize_t y,const size_t columns,
+    const size_t rows,ExceptionInfo *exception)
 </pre>
 
 <p>A description of each parameter follows:</p></ol>
@@ -295,7 +295,7 @@
 
 <pre class="code">
   MagickBooleaNType GetOneCacheViewAuthenticPixel(
-    const CacheView *cache_view,const long x,const long y,
+    const CacheView *cache_view,const ssize_t x,const ssize_t y,
     Pixelpacket *pixel,ExceptionInfo *exception)
 </pre>
 
@@ -398,8 +398,8 @@
 
 <pre class="code">
   const PixelPacket *GetCacheViewVirtualPixels(
-    const CacheView *cache_view,const long x,const long y,
-    const unsigned long columns,const unsigned long rows,
+    const CacheView *cache_view,const ssize_t x,const ssize_t y,
+    const size_t columns,const size_t rows,
     ExceptionInfo *exception)
 </pre>
 
@@ -425,7 +425,7 @@
 
 <pre class="code">
   MagickBooleanType GetOneCacheViewVirtualPixel(
-    const CacheView *cache_view,const long x,const long y,
+    const CacheView *cache_view,const ssize_t x,const ssize_t y,
     PixelPacket *pixel,ExceptionInfo *exception)
 </pre>
 
@@ -455,8 +455,8 @@
 <pre class="code">
   MagickBooleanType GetOneCacheViewVirtualMethodPixel(
     const CacheView *cache_view,
-    const VirtualPixelMethod virtual_pixel_method,const long x,
-    const long y,PixelPacket *pixel,ExceptionInfo *exception)
+    const VirtualPixelMethod virtual_pixel_method,const ssize_t x,
+    const ssize_t y,PixelPacket *pixel,ExceptionInfo *exception)
 </pre>
 
 <p>A description of each parameter follows:</p></ol>
@@ -487,8 +487,8 @@
 
 <pre class="code">
   PixelPacket *QueueCacheViewAuthenticPixels(CacheView *cache_view,
-    const long x,const long y,const unsigned long columns,
-    const unsigned long rows,ExceptionInfo *exception)
+    const ssize_t x,const ssize_t y,const size_t columns,
+    const size_t rows,ExceptionInfo *exception)
 </pre>
 
 <p>A description of each parameter follows:</p></ol>