




$(document).ready(function() {
	
	var text = [];
	var heroImages = [];
	
	$("#main_hero_list").find('li img').each( function ()
		{
			text.push($(this));
		});
	
	
	
	$("#hero_list_copy").find('div.hero_info_block').each( function ()
		{
			text.push($(this));
			
		});
	
	$("#hero_list_copy").find('div.hero_info_block:gt(0)').hide();
	
	
	var currentText = text[0];
	var currentHero = heroImages[0];
	
	var currentIndex = 0;
	
	var callBack = function(index)
	{
		currentText.hide();
		currentText = text[index];
		currentText.show();
		
		

		
		currentIndex = index;
	}
	
	
	
	var hero =
	{
		sliders: [
			{element:$("#hero_mover_lg"), stride:520, click:false, autoSlide:true},
			{element:$("#hero_mover_sm"), stride:113, offset:1, click:true, autoSlide:true}	
		],
		direction:"horizontal",
		previousElement: $("#hero_left_button"),
		nextElement: $("#hero_right_button"),
		slideTime:1,
		wrap:true,
		callBack:callBack,
		autoChangeIndex:true
	};
	
	sb_initRotator(hero);
	
});
