$(function(){
	var startSlide = 1;
	if (window.location.hash) {
		startSlide = window.location.hash.replace('#','');
	}
	// Initialize Slides
	$('#slides').slides({
		preload: false,
		generatePagination: true,
		play: 10000,
		pause: 5000,
		effect: 'fade',
		fadeSpeed: 500,
		hoverPause: true,
		start: startSlide,
		animationComplete: function(current){
			//window.location.hash = '#' + current;
		}
	});
	
});
