/*
* jQuery (DOM ready)
*/
jQuery(document).ready(
  function()
  {
    /*
     * Cycle plugin
     */
    if(jQuery('#slide') && jQuery('#slide').length)
    {
      jQuery("p#gallery-count, div#gallery-navigation").hide();
      // Initialize the cycle plugin with custom settings
      jQuery('#slide').cycle({
      		fx:		'fade', 
      		timeout: 4000,
		    speed:    1000,  // speed of the transition (any valid fx speed value) 
		    speedIn:  1000,  // speed of the 'in' transition 
		    speedOut: 1000
      });
    }
  }
);
