jQuery.noConflict();

jQuery(document).ready(function() {

	// Begining FAQ Scroll To Function
	jQuery('a').click(function() {

		// Gets ID which stores text to search for
		var getId = jQuery(this).attr('id');

		if (getId) {
			// Searches for text in a h3 element then creates an anchor point to go to
			jQuery('h3:contains('+ getId +')').addClass("scrollHere");

			// Scrolls to above anchor point
			jQuery('html').animate({scrollTop: jQuery('.scrollHere').offset().top}, 3000);

			// Removes anchor point to avoid multiple scroll to points
			jQuery('.scrollHere').removeClass("scrollHere");
		}
	});

	jQuery('.slideshow').cycle({
		fx: 'fade',
		speed: 3000,
		timeout: 6500,
		requeueOnImageNotLoaded: true
	});

});

// 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
//

