jQuery(document).ready(function() {
     $("#bookpreview").click(function() {
          $.fancybox([
               {
                 'href' : 'http://bedbugsmania.com/assets/images/preview001.jpg',
                 'title' : 'Click on the image to navigate the preview.  Use the "x" to close.'
               },
               {
                 'href' : 'http://bedbugsmania.com/assets/images/preview002.jpg',
                 'title' : 'Click on the image to navigate the preview.  Use the "x" to close.'
               },
               {
                 'href' : 'http://bedbugsmania.com/assets/images/preview003.jpg',
                 'title' : 'Click on the image to navigate the preview.  Use the "x" to close.'
               },
               {
                 'href' : 'http://bedbugsmania.com/assets/images/preview004.jpg',
                 'title' : 'Click on the image to navigate the preview.  Use the "x" to close.'
               },
               {
                 'href' : 'http://bedbugsmania.com/assets/images/preview005.jpg',
                 'title' : 'Click on the image to navigate the preview.  Use the "x" to close.'
               },
               {
                 'href' : 'http://bedbugsmania.com/assets/images/preview006.jpg',
                 'title' : 'Click on the image to navigate the preview.  Use the "x" to close.'
               },
               {
                 'href' : 'http://bedbugsmania.com/assets/images/preview007.jpg',
                 'title' : 'Click on the image to navigate the preview.  Use the "x" to close.'
               }
		   ]
               , {
                    'padding' : 0,
                    'transitionIn' : 'none',
                    'transitionOut' : 'none',
                    'type' : 'image',
                    'changeFade' : 0
               });
          });
}); 