﻿/*
This script specifies the bxSlider controls arrows 
but they are NOT used, so are set to false
*/

$(function () {
	$('#slides1').bxSlider({
		prev_image: 'images/btn_arrow_left.jpg',
		next_image: 'images/btn_arrow_right.jpg',
		wrapper_class: 'slides1_wrap',  // class name to be used for the outer wrapper of the slideshow
		margin: 0,
		auto: true,                     // determines if slides will move automatically
		auto_controls: false            // determines if 'start'/'stop' controls are displayed (auto mode only)
    });
    $('#testimonials').bxSlider({
        prev_image: 'images/btn_arrow_left.jpg',
        next_image: 'images/btn_arrow_right.jpg',
        wrapper_class: 'testimonials_wrap',  // class name to be used for the outer wrapper of the slideshow
        margin: 0,
        auto: true,                     // determines if slides will move automatically
        auto_controls: false            // determines if 'start'/'stop' controls are displayed (auto mode only)
    });

});
