$(function() {
    $(".jcarousel").jCarouselLite({
		auto : 2000,
		speed : 1400
    });

	$('#home_hero').anythingSlider({
		easing: "easeInOutExpo",        
		autoPlay: true,                 
		delay: 6000,                    
		startStopped: false,            
		animationTime: 600,             
		hashTags: true,                 
		buildNavigation: true,          
		pauseOnHover: true,                          
		navigationFormatter: formatIcons
	});
	
	$("#slide-jump").click(function(){
		$('#home_hero').anythingSlider(6);
	});
});

function formatIcons(index, panel) {
  return "";
}	
