//**********************************************************************************************************************
/**
* COMPANY: Zipline Interactive
* EMAIL: infon@gozipline.com
* PHONE: 509-321-2849
* DESCRIPTION: This document contains programming required for the website templates.  Requires the jQuery library.
*/
//***********************************************************************************************************************


//***********************************************************************************************************************
//ON DOCUMENT READY FUNCTIONS
//***********************************************************************************************************************
$(function() {

	speed = 600;
	container = $('.slider_thumbnails');
	prev = $('.slider_btn_left');
	next = $('.slider_btn_right');
	scrolls = 2;
	
	if ($('#features').length > 0) {
		$('#features').children().hide();
		$('#features').children().eq(0).show();
		container.children().eq(0).addClass('activated');
	}
	
	//zCarousel(speed, container, scrolls, prev, next);	//Reversed the arrows
	zCarousel(speed, container, scrolls, next, prev);
});


