function scrollit(parm) {
	$("div[id='" + parm + "']").ScrollTo(600);
}

function formatText(index, panel) {
	return index + "";
}

$(function () {
    $('.anythingSlider').anythingSlider({
        easing: "easeInOutExpo",        // Anything other than "linear" or "swing" requires the easing plugin
        autoPlay: false,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not.
        delay: 3000,                    // How long between slide transitions in AutoPlay mode
        animationTime: 600,             // How long the slide transition takes
        navigationFormatter: formatText       // Details at the top of the file on this use (advanced use)
    });
});
