// JavaScript Document

//******************************************************************************************
//                              jQuery Coin Slider Options
//******************************************************************************************
//  width: 565 // width of slider panel
//  height: 290 // height of slider panel
//  spw: 100 // squares per width
//  sph: 5 // squares per height
//  delay: 3000 // delay between images in ms
//  sDelay: 30 // delay beetwen squares in ms
//  opacity: 0.7 // opacity of title and navigation
//  titleSpeed: 500 // speed of title appereance in ms
//  effect: '' // random, swirl, rain, straight
//  navigation: true // prev next and buttons
//  links : true // show images as links
//  hoverPause: true // pause on hover
//******************************************************************************************

$(document).ready(function() {
  $('#gallery_slider').coinslider({ delay: 5000
				                   ,width: 304
				                   ,height: 235
				                   ,navigation: false
				                   ,hoverPause: true
				                   ,links : true
				                   ,effect: 'swirl'
				                   ,titleSpeed: 1000
				                   ,sDelay: 7
				                   });
});

$(document).ready(function() {
  $('#featured_activities_slider').jCarouselLite({ 
	                                btnNext: "#nextBTN"
				                   ,btnPrev: "#prevBTN"
				                   ,visible: 1
				                   ,auto: 12000
				                   ,speed: 1250
				                   });
});



