$(function(){
	$('#slider').anythingSlider({
			buildArrows: false,
			onSlideComplete : function(slider){ // grab the needed info from the current slider frame and update the navigation bar below with the data.
				updateSlideInfo();
			}
		});
		function updateSlideInfo(){
			$sliderTitle = $('.activePage .slider-item-title').html(); //store the Slider Title
			$sliderExcerpt = $('.activePage .slider-item-excerpt').html(); //store the Slider Excerpt
			$sliderLink = $('.activePage .slider-item-link').attr('href'); //store the Slider Link
			$('#feature-slider-header').replaceWith('<h2 id="feature-slider-header"><span>Featured Project:</span> '+ $sliderTitle +'</h2>'); //Update the title seciton
			$('#feature-slider-description').replaceWith('<p id="feature-slider-description">' + $sliderExcerpt + '</p>' ); //Update the description section
			$('#project-button').replaceWith('<a href="' + $sliderLink + '" id="project-button">View Project</a>' ); //Update the project link	
		}
		updateSlideInfo();
	});

