
/***********************************
the siteFeature home page accordion slider thingy
************************************/
jQuery.noConflict();

jQuery(document).ready(function(){

    // this is where you call siteFeature
    // see the README and the original demo (index.html) for examples on how to customize siteFeature
    jQuery('#preFeature').siteFeature({
    autoPlay: 'true',
      autoPlayInterval: '5000',
    containerWidth: '957px',        // generated Container's width
    containerHeight: '320px',       // generated Container's height
    imgWidth: '680px',
    txtBoxHorizontalHeight: '82px',     // sets the height of the Horizontal TextBox
    tabsLocation: 'right',
    tabBgImg: '/assets/images/arrow-right.png',
    tabBgImgIE6: '/assets/images/arrow-right.gif',
    animateInOnLoad: true,
    txtBoxAnimateInType: 'fade',
    txtBoxAnimateOutType: 'fade',
    txtBoxAnimateHorzAlt: true,       // allows horizontal txtBoxes to animate in/out differently
    txtBoxAnimateInHorzType: 'fade',    // for horizontal TextBoxes: 'blink','fade','slideUp','slideDown', 'slideLeft', 'slideRight'
    txtBoxAnimateOutHorzType: 'fade',
    imgBgsAnimateInDuration: '1400',      // duration for ImageBackground In animations (in milliseconds)
    imgBgsAnimateOutDuration: '1200',
    tabsAnimateInDuration: '600',       // duration for Tab In animations (in milliseconds)
    tabsAnimateWidth: '+=20',       // relative pixel width difference to be animated (to reveal the arrow)
    pauseOnHover: 'true',
	activeWindowIsLink: true
    });

  });

