﻿var aformantime;
function articlesforman() {
	$.getJSON("/rarticlesforman", function(article) {
		$.getJSON("/rarticlescategories", function(cate) {
			for(var a = 0; a<article.length; a++){
				for(var b = 0; b<cate.length; b++){
					if (article[a].fields.category == cate[b].pk)
					{
						article[a].fields.category = cate[b].fields.name;
						article[a].fields.categoryslug = cate[b].fields.slug;
					};
				};
			};
				
			aformanload();
			aformanstart();
			
			function aformanload() {
				var aj = 0;
				var selected = 0;
				$("div.mcontent.forman img").attr("src","http://www.twojakosmetyczka.vbiz.pl/img/artykuly/" + article[selected].fields.image);
				$("div.mcontent.forman div a").remove();
				for (aj; aj<=article.length-1; aj++){
					if (aj==selected){
						$("div.mcontent.forman div").append("<a class='actual' id="+aj+" href='/artykul/" + article[aj].fields.categoryslug + "/" + article[aj].pk + "," + slugify(article[aj].fields.title) + ".html'><p><span>" + article[aj].fields.title + "</span><br />" + article[aj].fields.description + "</p>więcej >></a>");
					}else{
						$("div.mcontent.forman div").append("<a id="+aj+" href='/artykul/" + article[aj].fields.categoryslug + "/" + article[aj].pk + "," + slugify(article[aj].fields.title) + ".html'><p><span>" + article[aj].fields.title + "</span><br />" + article[aj].fields.description + "</p>więcej >></a>");
					};
				};
			};
			
			function aformanstart(){
				aformantime = setInterval(function() { aformanrefresh(); }, 10000);
			}
			
			function aformanstop(){
				clearInterval(aformantime); 
			}
			
			function aformanrefresh(){
				var selected = $("div.mcontent.forman div a.actual").attr("id");
				if (selected >= article.length-1)
				{
					$("div.mcontent.forman div a.actual").removeClass("actual")
					$("div.mcontent.forman div a:first").addClass("actual");
					selected = $("div.mcontent.forman div a.actual").attr("id");
					$("div.mcontent.forman img").attr("src","http://www.twojakosmetyczka.vbiz.pl/img/artykuly/" + article[selected].fields.image);
				}else{
					$("div.mcontent.forman div a.actual").removeClass("actual").next("a").addClass("actual");
					selected = $("div.mcontent.forman div a.actual").attr("id");
					$("div.mcontent.forman img").attr("src","http://www.twojakosmetyczka.vbiz.pl/img/artykuly/" + article[selected].fields.image);
				};
			}
			
			$("div.mcontent.forman div a").hover(
				function () {
					aformanstop();
					$("div.mcontent.forman div a.actual").removeClass("actual");
					var selected = $(this).attr("id");
					$("div.mcontent.forman img").attr("src","http://www.twojakosmetyczka.vbiz.pl/img/artykuly/" + article[selected].fields.image);
					$(this).addClass("actual");
				},function () {
					aformanstart();
				}
			);
		});
	});
}






