function formatText(index, panel) {
	return index + "";
};
$(function () {
	$('.slider ').anythingSlider({
		easing: "easeInOutExpo",
		autoPlay: true,
		delay: 4000,
		startStopped: false,
		animationTime: 600,
		hashTags: true,
		buildNavigation: false,
		pauseOnHover: true,
		startText: "START",
		stopText: "STOP",
		navigationFormatter: formatText
	});
		$("#slide-jump").click(function(){
		$('.slider ').anythingSlider(6);
	});
});

function changeFlag(elementId, flagType){
	if (flagType == 1){
		document.getElementById(elementId).src = '/public/images/flag-marked.png';
	} else {
		document.getElementById(elementId).src = '/public/images/flag.png';
	}
}
