// JavaScript Document
/* //jQuery Cycle
jQuery(document).ready(function() {
jQuery('#home_slideshow').cycle({
 speed:1000, // defines the number of milliseconds it will take to transition from one slide to the next.
 timeout:4000, // specifies how many milliseconds will elapse between the start of each transition
 pause: 1, // so that pauses when user hovers over a slide
 startingSlide:0
 });

	jQuery('#goto1').click(function() {
	jQuery('#home_slideshow').cycle(0);
	return false;
	});
	
	jQuery('#goto2').click(function() {
	jQuery('#home_slideshow').cycle(1);
	return false;
	});
	
	jQuery('#goto3').click(function() {
	jQuery('#home_slideshows').cycle(2);
	return false;
	}); 
});*/

jQuery(document).ready(function() {
jQuery(function(){
			jQuery('#slides').slides({
				effect: 'fade',
				crossfade: true,
				preload: true,
				preloadImage: '../images/loading.gif',
				play: 5000,
				pause: 2500,
				hoverPause: true
			});
		});
});

// Google+ javascript 

  (function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  })();

