var isover = false;

$(function(){

	if(!$("#movers-row").length)
		$("#banner").addClass("interior");

	var bannerSlider = $("#main-photo-slider");

	bannerSlider.armyKnife({
		generateNav		:	false,
		transition		: 	"slide",
		autoRotate		:	true,
		autoRotateDelay	:	6000,
		speed			: 	2000,
		useContinue		:	true,
		sectionOnEnter		:	function(o) {
			o.cont();
		},
		sectionOnExit		:	function(o) {
			$(o.sections[o.target]).bind("mouseenter", function(){
				isover = true;
			});
			$(o.sections[o.target]).bind("mouseleave", function(){
				isover = false;
				bannerSlider.armyKnife("trigger", "sectionBeforeExit");
			});
			o.cont();
		},
		sectionBeforeEnter	:	function(o) {
			o.cont();
		},
		sectionBeforeExit	:	function(o) {
			if(!isover)
				o.cont();
		},
				
		
	});
	
		
	$("#faqs h3").click(function(){
		$("#faqs h3").removeClass("active").next("div").slideUp();
		$(this).addClass("active").next("div").slideDown();	
	});
		
});

