  $.fn.wait = function(time, type) {
        time = time || 1000;
        type = type || "fx";
        return this.queue(type, function() {
            var self = this;
            setTimeout(function() {
                $(self).dequeue();
            }, time);
        });
    };



 
 
 
 
 
 
 
 
 
 
 
 
 
var totale_offerte = 0;
var totale_news = 0;
var totale_sconti = 0;
var totale_foto = 0;

function conta(){
 totale_offerte = $("#offerte li").length;
 totale_news = $("#news li").length;

 totale_foto = $("#testo_home li").length;
 
 parti();
}

 


function attiva(){

 setTimeout("news_home()", 800);
 setTimeout("offerte_home()", 300);
}












var im = "public/home_1.jpg";
var o=-1;
function offerte_home(){
	
	  o=o+1;
	 
   		if(o>=totale_offerte){o=0;}
	
		im = ""+$("#off_"+o).attr("title")+".jpg";
		$("#offerte_home").css("background","url("+im+")");
		 
		$("#offerte_home").show(500);
		$("#off_"+o).fadeIn(1000);
   		$("#off_"+o).animate({"left": "+=0px", "top": "-=180px"}, 5000, function(){$("#offerte_home").fadeOut(1000);$("#off_"+o).fadeOut(1000, function(){$("#off_"+o).animate({"left": "-=0px", "top": "+=180px"}, "fast", offerte_home);})});
     
  } 
	 
	 

var im2 = "/public/home_1.jpg";
var n=-1;
function news_home(){
	
	  n=n+1;
	 
   		if(n>=totale_news){n=0;}
	
		im2 = "/public/"+$("#news_"+n).attr("title")+".jpg";
		$("#news_home").css("background","url("+im2+")");
		 
		$("#news_home").show(500);
		$("#news_"+n).fadeIn(1000);
   		$("#news_"+n).animate({"left": "+=0px", "top": "-=180px"}, 5000, function(){$("#news_home").fadeOut(1000);$("#news_"+n).fadeOut(1000, function(){$("#news_"+n).animate({"left": "-=0px", "top": "+=180px"}, "fast", news_home);})});
     
  } 	 
	 


var im3 = "/public/home_1.jpg";
var f = -1;
function foto_home(){
	
	  f=f+1;
	
   		if(f>=totale_foto){f=0;}
	 
	
		im3 = "/foto/"+"foto_"+f+".jpg";
		$("#foto_home").css("background","url("+im3+") bottom no-repeat");
		 
		$("#foto_home").show(500);
		$("#testo_home").fadeIn(1000);
   		
		$("#foto_"+f).fadeIn(1000);
   		$("#foto_"+f).animate({"left": "+=0px", "top": "+=0px"}, 10000, function(){$("#foto_home").fadeOut(1000);$("#testo_home").fadeOut(1000, function(){$("#foto_"+f).fadeOut(1000);$("#foto_"+f).animate({"left": "-=0px", "top": "-=0px"}, "fast", foto_home);})});
     
  } 	 




var s=-1;
function sconti_home(){
	  s=s+1;
   		if(s==totale_sconti){s=0;}
		$("#sconti_"+s).fadeIn(1000);
		$("#sconti_"+s).wait(2000);
		$("#sconti_"+s).fadeOut(1000, sconti_home);
   		
  } 
	 







function offerta(){ location.href = $("#off_"+o+" a").attr("href");}


function chiudimenu()
{
	
$('#menu_c').fadeOut();
$('#menu_f').animate({  left: -290 }, 1500 );
$('#aprimenu').fadeIn();

}
function aprimenu()
{
	
$('#menu_c').fadeIn();
$('#menu_f').animate({  left: 0 }, 1500 );
$('#aprimenu').fadeOut();

}

function apriinfo()
{
	
$('#info_txt').fadeIn();
$('#info_f').animate({  left: 100, top:155 }, 1500 );
$('#apriinfo').fadeOut();

}

function chiudiinfo()
{
	
$('#info_txt').fadeOut();
$('#info_f').animate({  left: 650, top: 280 }, 1500 );
$('#apriinfo').fadeIn();

}

