
		// Set up Sliders
		// **************
$(function(){

			$('#slider1').anythingSlider({
				startStopped    : false, // If autoPlay is on, this can force it to start stopped
				width           : 928,   // Override the default CSS width
				startStopped    : false,  // If autoPlay is on, this can force it to start stopped
				resumeDelay     : 10000, // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
				onSlideComplete : function(slider){
					// alert('Welcome to Slide #' + slider.currentPage);
				}
			});
			$(".image").click(function() {
				var image = $(this).attr("rel");
				$('#image').hide();
				$('#image').fadeIn('fast');
				$('#image').html('<img src="' + image + '"/>');
				return false;
			});

});
