jQuery.noConflict();
jQuery(document).ready(function() {
	jQuery('.slideshow1').cycle({
		fx: 'scrollLeft',
		requeueOnImageNotLoaded: 'true',
		timeout: 6000,
		after: onAfter
	});

	jQuery('.slideshow2').cycle({
		fx: 'scrollLeft',
		requeueOnImageNotLoaded: 'true',
		timeout: 6000,
		after: onAfter
	});

	function onAfter() {
		jQuery('#slideshowtext').html("<p>" + this.alt + "</p>")
	};

	jQuery('#scrollfrom').click(function() {
		jQuery('html, body').animate({ scrollTop: jQuery('#scrollto').offset().top }, 1500);
	});
});

// Transition Values and Effects
//
// blindX
// blindY
// blindZ
// cover
// curtainX
// curtainY
// fade
// fadeZoom
// growX
// growY
// none
// scrollUp 
// scrollDown
// scrollLeft
// scrollRight
// scrollHorz
// scrollVert
// shuffle
// slideX
// slideY
// toss
// turnUp
// turnDown
// turnLeft
// turnRight
// uncover
// wipe
// zoom
//
//
// Above effects are sensitive to capitals
// Duration of slide is set in jquery.cycle.min.js
//
