$(document).ready(function() {
  $('#slider').coinslider({
    width: 520, // width of slider panel
    height: 290, // height of slider panel
    spw: 5, // squares per width
    sph: 5, // squares per height
    delay: 4000, // delay between images in ms
    sDelay: 140, // 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 : false, // show images as links
    hoverPause: true // pause on hover
  })
  try {
  $.daterangepicker({
    fromSelector: "#fromDate",
    toSelector: "#toDate",
    readOnly:true //avoids manual user input
  })
  } catch(e) {}
  $("a[rel^='gallery']").fancybox({
    'overlayShow'			: true,
    'speedIn'			: 1600,
    'speedOut'    : 500,
    'transitionIn' : 'elastic',
    'transitionOut' : 'elastic',
    'opacity'			: false,
    'autoScale'	  : true,
    'padding'				  : 5,
    'overlayOpacity'	: 0.85,
    'easingIn'				: 'easeOutQuint',
    'easingOut'				: 'easeInCubic'
  });
})

