$(document).ready(function() {
	$('#loopedslider').loopedSlider({
		container: "#slide-container",
		slides: "#slides",
		addPagination: true,
		pagination: "slide-pagination",
		containerClick: false,
		autoStart: 10000,
		fadespeed: 0,
		slidespeed: 0,
		restart: 0,
		autoHeight: 1000
	});
	
	$('a[href*=#]').bind("click", jump);
    return false;

});

//Anonymous function that is applied to all internal-links
var jump=function(e) {
	//prevent the "normal" behaviour which would be a "hard" jump
	e.preventDefault();
	//Get the target
	var target = $(this).attr("href");
	//perform animated scrolling
	$('html,body').animate({
	       //get top-position of target-element and set it as scroll target
	       scrollTop: $(target).offset().top
	//scrolldelay: 2 seconds
	},1000,function() {
	       //attach the hash (#jumptarget) to the pageurl
	       location.hash = target;
	});
}

