/* ---------------------------------------------------------------------------
  
  Forums Event Design & Production Master Javascript file
  http://www.forumseventdesign.com
  
  Author: nGen Works
  http://ngenworks.com
  
--------------------------------------------------------------------------- */

// link builder for cycle nav
function pagerBuild(index, elem) {
  return "<li><a href='#'>" + (index + 1) + "</a></li>";
}
//


function init()
{
  
  // gallery business 
  if(jQuery().jqGalViewII) {
    $('#gallery').jqGalViewII();
    $(".gvIIContainer .gvIIHolder .gvIIItem:nth-child(4n)").addClass('last-in-row');
  }
  //
  
  // home feature
  if(jQuery().cycle) {
    $(".features").cycle({
      fx: 'fade',
      timeout: 8000
    });
  }
  //

}

//Wait till the page has loaded
$(document).ready(function(){
  //////////////////////////////////////////////////////
  //INITIALIZE
  //////////////////////////////////////////////////////
  init();
});
