jQuery(document).ready(function($){

	$('#slideshow')
		.before("<div id='navig'>")
		.cycle({
		fx: 'fade',
		timeout: 10000,
		cleartype:  0,
		cleartypeNoBg: false,
		pager:  '#navig'
	});
	
	$(".toggle_container_" + "reports").hide();
	$(".toggle_container_" + "chart").hide();
	$(".toggle_container_" + "whoshot").hide();
	$(".toggle_container_" + "maptastic").hide();
	$(".toggle_container_" + "customdashboard").hide();
	$(".toggle_container_" + "instantimpact").hide();
	$(".toggle_container_" + "distribution").hide();
	$(".toggle_container_" + "interactive").hide();
	$(".toggle_container_" + "ICR").hide();
	$(".toggle_container_" + "performance").hide();
	$(".toggle_container_" + "automatedtraining").hide();
	$(".toggle_container_" + "automatedmanager").hide();
	$(".toggle_container_" + "competitive").hide();
	$(".toggle_container_" + "reward").hide();
	
	$(function() {
		var anchorName = document.location.hash.substring(1);
			
			if (anchorName) {
				$(".toggle_container_" + anchorName).show();
			}
	});
	$("h4.sub-title-long-trigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
	});

});


