/* Image Gallery - Config
   Compatible with v.1-3 */

$(document).ready(function () {
	if ( $('.moduleHomepageBanner').length > 0 ) {
    $('.moduleHomepageBanner').controlImageGallery({
			'effect': 'fade',
			'effectspeed': 500,
			//'effect': 'slide',
			//'effectspeed': 1000,
			//'effectoff': '930',
			//'effectactive': '0',
			'thumbitems': '.thumbs span',
			'timeron' : true
    });
	}
	if ( $('.moduleBannerAdSlides').length > 0 ) {
    $('.moduleBannerAdSlides').controlImageGallery({
			'effect': 'slide',
			'effectspeed': 400,
			'effectoff': '430',
			'effectactive': '0',
			'heightmode': 'fixed',
			'heightfixed': 'max',
			'thumbitems': '.controls .controlNumbers',
			'controlprev': '.controls .controlLeft',
			'controlnext': '.controls .controlRight',
			'timeron' : true,
			'timerspeed' : 7000,
			'timerpauseonhover' : true
    });
	}
	if ( $('.moduleClientQuotes').length > 0 ) {
    $('.moduleClientQuotes').controlImageGallery({
			'effect': 'slide',
			'effectspeed': 400,
			'effectoff': '220',
			'effectactive': '0',
			'heightmode': 'fixed',
			'heightfixed': 'max',
      'slides': '.quotes',
      'slideitems': '.quotes li',
			'timeron' : false
    });
	}
	if ( $('.moduleContentGallery').length > 0 ) {
    $('.moduleContentGallery').controlImageGallery({
			'effect': 'slide',
			'effectspeed': 400,
			'effectoff': '270',
			'effectactive': '0',
			'heightmode': 'fluid',
      'slides': '.slides ul',
      'slideitems': '.slides ul li',
			'thumbitems': '.controls .controlNumbers',
			'controlprev': '.controls .controlLeft',
			'controlnext': '.controls .controlRight',
			'timeron' : true
    });
	}
	
});

