$(document).ready(function(){

	slideshow = $(".slider");
	$(".slider .slide").hide();
	slideshow.find(".slide:first").addClass("active-slide").show();
	slideshow.find(".slide-title:first").addClass("active-title").show();
	
	if($(".slider .slide-dots .dot").length){
	$(".dot:first").addClass("active-dot");
	$(".dot:last").css("margin-right", "0");
	}
	
	slide = 1;
	
$(".slide-left").click(function(){
	slide--;

	var totalItems = $(".slider .slide").length;

	if(slide >= 1){
	$(".active-slide").prev(".slide").addClass("active-slide");
	$(".active-title").prev(".slide-title").addClass("active-title");
	
	$(".active-slide:last").removeClass("active-slide").fadeOut(500, function(){
		$(".active-slide").fadeIn(800);
	});
	
	$(".active-title:last").removeClass("active-title").fadeOut(500, function(){
		$(".active-title").fadeIn(800);
	});
	
	$(".active-dot").prev(".dot").addClass("active-dot");
	$(".active-dot:last").removeClass("active-dot");
	
	}else{
	slide++;
}

});



$(".slide-right").click(function(){
	slide++;

	var totalItems = $(".slider .slide").length;
//	alert($(".active-slide").length + " active - total " + totalItems);

	if(slide <= totalItems){
	$(".active-slide").next(".slide").addClass("active-slide");
	$(".active-title").next(".slide-title").addClass("active-title");

	$(".active-slide:first").removeClass("active-slide").fadeOut(500, function(){
		$(".active-slide").fadeIn(800);
	});
	
	$(".active-title:first").removeClass("active-title").fadeOut(500, function(){
		$(".active-title").fadeIn(800);
	});

	$(".active-dot").next(".dot").addClass("active-dot");
	$(".active-dot:first").removeClass("active-dot");
	
	}else{
	slide--;
}
});


});
