// JavaScript Document
  var nom = 1;
  var rot1	= new Image(717,541); rot1.src = "/images/template/foto_index/foto_index1.jpg";
  var rot2	= new Image(717,541); rot2.src = "/images/template/foto_index/foto_index2.jpg";
  var rot3	= new Image(717,541); rot3.src = "/images/template/foto_index/foto_index3.jpg";
  var rot4	= new Image(717,541); rot4.src = "/images/template/foto_index/foto_index4.jpg";
  var rot5	= new Image(717,541); rot5.src = "/images/template/foto_index/foto_index5.jpg";
  var rot6	= new Image(717,541); rot6.src = "/images/template/foto_index/foto_index6.jpg";

function ChangeImg( ) {
	if (nom>6) nom=1;
	$(".baner").css(
	  {backgroundImage: "url(" + eval("rot" + nom + ".src") + ")"  } 	);
	for (var i=1; i<=6; i++){
		$(".aa" + i + ">a " ).attr("class","");
	}
	$(".aa" + nom + ">a " ).attr("class","activ");
	
	if (nom == 1) 
		$(".podpis").html("<p><a href='#' class='a_orang'>Petracer's Tango Grigio 60x60</a></p><p class='text_small'>Италия</p>");
	if (nom == 2) 
		$(".podpis").html("<p><a href='#' class='a_orang'>Petracer's Tango Odio 60x60</a></p><p class='text_small'>Италия</p>");
	if (nom == 3) 
		$(".podpis").html("<p><a href='#' class='a_orang'>Rex Metrowall Nero 7.6x30.4</a></p><p class='text_small'>Италия</p>");
	if (nom == 4) 
		$(".podpis").html("<p><a href='#' class='a_orang'>Rex Metrowall Bianco 7.6x30.4</a></p><p class='text_small'>Италия</p>");
	if (nom == 5) 
		$(".podpis").html("<p><a href='#' class='a_orang'>Petracer's Tango Blu 60x60</a></p><p class='text_small'>Италия</p>");
	if (nom == 6) 
		$(".podpis").html("<p><a href='#' class='a_orang'>Rex Metrowall Crosta Bianco 30.4x60.8</a></p><p class='text_small'>Италия</p>");
	
}

setInterval(ToBlack, 12000);

tim = null;
count=1;

function ToBlack(){
	SetOpasity();
}

function SetOpasity(){
	
	$(".imgblack").animate({opacity: 1 }, 2000, function(){
		nom++;
		ChangeImg();
		$(".imgblack").animate({opacity: 0 }, 2000);
	} );
}

