$(function(){
	var i = 0;
	var time = 5000;
	
	// SLIDER_NAV: CLICK!
	$("#slide_nav").find('.nav').each(function(i){
		$(this).click(function(event){
			event.preventDefault();
		
			if($('.slide').find("img:animated").length == 0)
			{
				// hide all, show one
				$('.slide').find("img").hide();
				$(".slide").find("img:eq("+i+")").animate({ opacity: 'show'}, 'slow');
		
				// show active button
				$("#slide_nav").find("a").removeClass("active");
				$("#slide_nav").find("a:eq("+i+")").addClass("active");
			}
		});
	});
	
	// AUTO SLIDER
	$.timer(0, function (timer) {

		// hide all, show one
		$('.slide').find("img").hide();
		$(".slide").find("img:eq("+i+")").animate({ opacity: 'show'}, 'slow');
	
		// show active button
		$("#slide_nav").find("a").removeClass("active");
		$("#slide_nav").find("a:eq("+i+")").addClass("active");
		
		if (i < $("#slide_nav").find("a").length-1){
			i++;
		}else{
			i=0;
		}

		// hover: stop/start timer
		$("#slide_nav").hover(function(){
			timer.stop();
		},function(){
			i=0; // reset slider
			timer.reset(time);
		});
		timer.reset(time);
	});
	
});