$(document).ready(function() { //begin jquery
	
			$("#slideshow").cycle({
				fx: 'fade',
				speed: 1000,
				timeout: 10000,
				pause: 1,
				next: '#barLink'
			});
			
			$("#slide").cycle({
				fx:     'scrollLeft', 
				speed: 300,
				timeout: 0,
				next:   '#next'
			});
			
			$("#next").click(function() {
				$(".purple").fadeIn();
				$(".purplehide").fadeOut();
			});


		}); //end of jquery

