// JavaScript Document
jQuery.fn.fadeTo = function(speed,to,callback) { 
    return this.animate({opacity: to}, speed, function() { 
        if (to == 1 && jQuery.browser.msie)  
            this.style.removeAttribute('filter');  
        if (jQuery.isFunction(callback)) 
            callback();  
    }); 
};

function ridimensionaImg(){
	
	var screenWidth = $(window).width();
	var screenHeight = $(window).height();
	
	$('#container').hide();
	$('#container').css({'width':screenWidth,'height':screenHeight});
	if (screenWidth>screenHeight){
		var rapporto = screenWidth/screenHeight;
		if (rapporto>1.5){
			$('.img-bg').css({'width':screenWidth,'height':screenWidth/1.5});
		}else{
			$('.img-bg').css({'width':screenHeight*1.5,'height':screenHeight});
		};
	}else{
		$('.img-bg').css({'width':screenHeight*1.5,'height':screenHeight});
	};
	$('#container').show();

};

function ridimensionaContainer(){
	
	var screenWidth = $(window).width();
	var screenHeight = $(window).height();
	
	if(screenWidth<950){screenWidth=950;};
	if(screenHeight<672){screenHeight=672;};
	
	if ($('#nosotros').length > 0){
		if(screenHeight<1000){screenHeight=1000;};
	};//#nosotros
	
	if ($('#contacto').length > 0){
		if(screenHeight<800){screenHeight=800;};
	};//#nosotros
	
	$('#container').hide();
	$('#container').css({'width':screenWidth,'height':screenHeight});
	$('#header').css({'width':screenWidth});
	$('#fascia-grigia-top').css({'width':screenWidth});
	$('#sfondo-menu-top').css({'width':screenWidth});
	$('#sfondo-elenco-prodotti').css({'width':screenWidth});
	$('#footer').css({'width':screenWidth});
	$('#container').show();

};

$(document).ready(function(){
	
	//blocco tasto destro
	$(document).bind("contextmenu",function(e){
    	return false;
	});
	
	//mouseover menu principale
	$('#menu1').mouseover(function() {
		$('img', this).attr('src','img/menu-coleccion-on.gif');
	});
	$('#menu1').mouseout(function() {
		$('img', this).attr('src','img/menu-coleccion.gif');
	});
	$('#menu2').mouseover(function() {
		$('img', this).attr('src','img/menu-blog-on.gif');
	});
	$('#menu2').mouseout(function() {
		$('img', this).attr('src','img/menu-blog.gif');
	});
	$('#menu3').mouseover(function() {
		$('img', this).attr('src','img/menu-nosotros-on.gif');
	});
	$('#menu3').mouseout(function() {
		$('img', this).attr('src','img/menu-nosotros.gif');
	});
	$('#menu4').mouseover(function() {
		$('img', this).attr('src','img/menu-contacto-on.gif');
	});
	$('#menu4').mouseout(function() {
		$('img', this).attr('src','img/menu-contacto.gif');
	});
	$('#menu5').mouseover(function() {
		$('img', this).attr('src','img/menu-about-us-on.gif');
	});
	$('#menu5').mouseout(function() {
		$('img', this).attr('src','img/menu-about-us.gif');
	});
	$('#menu6').mouseover(function() {
		$('img', this).attr('src','img/menu-collection-on.gif');
	});
	$('#menu6').mouseout(function() {
		$('img', this).attr('src','img/menu-collection.gif');
	});
	$('#menu7').mouseover(function() {
		$('img', this).attr('src','img/menu-contact-on.gif');
	});
	$('#menu7').mouseout(function() {
		$('img', this).attr('src','img/menu-contact.gif');
	});
	$('#menu8').mouseover(function() {
		$('img', this).attr('src','img/menu-nosaltres-on.gif');
	});
	$('#menu8').mouseout(function() {
		$('img', this).attr('src','img/menu-nosaltres.gif');
	});
	$('#menu9').mouseover(function() {
		$('img', this).attr('src','img/menu-colleccio-on.gif');
	});
	$('#menu9').mouseout(function() {
		$('img', this).attr('src','img/menu-colleccio.gif');
	});
	$('#menu10').mouseover(function() {
		$('img', this).attr('src','img/menu-contacte-on.gif');
	});
	$('#menu10').mouseout(function() {
		$('img', this).attr('src','img/menu-contacte.gif');
	});
	
	
	//in base all'id del body
	if ($('#index').length > 0){
		
		//ridimensionamento .img-bg
		ridimensionaImg();
		
		//mouseover #lang
		$('#castellano').mouseover(function() {
			$('img', this).attr('src','img/lang-castellano-on.png');
		});
		$('#castellano').mouseout(function(){
			$('img', this).attr('src','img/lang-castellano.png');
		});
		$('#catala').mouseover(function() {
			$('img', this).attr('src','img/lang-catala-on.png');
		});
		$('#catala').mouseout(function(){
			$('img', this).attr('src','img/lang-catala.png');
		});
		$('#english').mouseover(function() {
			$('img', this).attr('src','img/lang-english-on.png');
		});
		$('#english').mouseout(function(){
			$('img', this).attr('src','img/lang-english.png');
		});
		
	};//#index
	
	//in base all'id del body
	if ($('#nosotros').length > 0){
		
		//ridimensionamento #container
		ridimensionaContainer();
		
	};//#nosotros
	
	//in base all'id del body
	if ($('#coleccion').length > 0){
		
		//ridimensionamento #container
		ridimensionaContainer();
		
		//condizioni iniziali
		var whDivProdotto = 798;
		var nProdotti = 14;
		
		var opacita = 0.15;
		var tempo = 'slow';
		var indice = 4;
		
		$('#gallery-prodotti').css({'margin-left':-whDivProdotto*indice});
		$('.prodotto').fadeTo(0,opacita);
		//$('#freccia-sx').hide();
		$('#prodotto4').fadeTo(0,1);
		
		//#gallery-prodotti
		$('#freccia-dx').click(function(){
			//$('#prodotto'+indice).animate({opacity:'0.5'},tempo);
			$('#prodotto'+indice).fadeTo(tempo,opacita);
			indice=indice+1;
			//$('#prodotto'+indice).animate({opacity:'1'},tempo);
			$('#prodotto'+indice).fadeTo(tempo,1);
			$('#gallery-prodotti').animate({'margin-left':-whDivProdotto*indice},tempo);
			if(indice==1){$('#freccia-sx').fadeIn();};
			if(indice==13){$('#freccia-dx').fadeOut();};
		});
		$('#freccia-sx').click(function(){
			$('#prodotto'+indice).fadeTo(tempo,opacita);
			indice=indice-1;
			$('#prodotto'+indice).fadeTo(tempo,1);
			$('#gallery-prodotti').animate({'margin-left':-whDivProdotto*indice},tempo);
			if(indice==0){$('#freccia-sx').fadeOut();};
			if(indice==12){$('#freccia-dx').fadeIn();};
		});
		//immagini prodotti
		var tempo2 = 600;
		
		$('.img-1').hide();
		$('.img-1').click(function(){
			var nomeImg = $(this).children('img').attr('alt');
			$(this).parent().parent().find('img.img-big').attr('src','img/'+nomeImg+'_1.jpg');
			$(this).hide();
			$(this).parent().find('.img-2').show();
			$(this).parent().find('.img-3').show();
		});
		$('.img-2').click(function(){
			var nomeImg = $(this).children('img').attr('alt');
			$(this).parent().parent().find('img.img-big').attr('src','img/'+nomeImg+'_2.jpg');
			$(this).hide();
			$(this).parent().find('.img-1').show();
			$(this).parent().find('.img-3').show();
		});
		$('.img-3').click(function(){
			var nomeImg = $(this).children('img').attr('alt');
			$(this).parent().parent().find('img.img-big').attr('src','img/'+nomeImg+'_3.jpg');
			$(this).hide();
			$(this).parent().find('.img-1').show();
			$(this).parent().find('.img-2').show();
		});
		//elenco prodotti
		$('#vai0').mouseover(function(){$('img',this).attr('src','img/p-bardsey-on.gif');});
		$('#vai0').mouseout(function(){$('img',this).attr('src','img/p-bardsey.gif');});
		$('#vai0').click(function(){
			if(indice==13){$('#freccia-dx').fadeIn();};
			indice=0;
			$('.prodotto').fadeTo(0,opacita)
			$('#prodotto'+indice).fadeTo(tempo,1);
			$('#gallery-prodotti').animate({'margin-left':-whDivProdotto*indice},tempo);
			$('#freccia-sx').fadeOut();
		});
		$('#vai1').mouseover(function(){$('img',this).attr('src','img/p-begur-on.gif');});
		$('#vai1').mouseout(function(){$('img',this).attr('src','img/p-begur.gif');});
		$('#vai1').click(function(){
			if(indice==13){$('#freccia-dx').fadeIn();};
			if(indice==0){$('#freccia-sx').fadeIn();};
			indice=1;
			$('.prodotto').fadeTo(0,opacita)
			$('#prodotto'+indice).fadeTo(tempo,1);
			$('#gallery-prodotti').animate({'margin-left':-whDivProdotto*indice},tempo);
		});
		$('#vai2').mouseover(function(){$('img',this).attr('src','img/p-hamptons-on.gif');});
		$('#vai2').mouseout(function(){$('img',this).attr('src','img/p-hamptons.gif');});
		$('#vai2').click(function(){
			if(indice==13){$('#freccia-dx').fadeIn();};
			if(indice==0){$('#freccia-sx').fadeIn();};
			indice=2;
			$('.prodotto').fadeTo(0,opacita)
			$('#prodotto'+indice).fadeTo(tempo,1);
			$('#gallery-prodotti').animate({'margin-left':-whDivProdotto*indice},tempo);
		});
		$('#vai3').mouseover(function(){$('img',this).attr('src','img/p-daltvila-on.gif');});
		$('#vai3').mouseout(function(){$('img',this).attr('src','img/p-daltvila.gif');});
		$('#vai3').click(function(){
			if(indice==13){$('#freccia-dx').fadeIn();};
			if(indice==0){$('#freccia-sx').fadeIn();};
			indice=3;
			$('.prodotto').fadeTo(0,opacita)
			$('#prodotto'+indice).fadeTo(tempo,1);
			$('#gallery-prodotti').animate({'margin-left':-whDivProdotto*indice},tempo);
		});
		$('#vai4').mouseover(function(){$('img',this).attr('src','img/p-maiori-on.gif');});
		$('#vai4').mouseout(function(){$('img',this).attr('src','img/p-maiori.gif');});
		$('#vai4').click(function(){
			if(indice==9){$('#freccia-dx').fadeIn();};
			if(indice==0){$('#freccia-sx').fadeIn();};
			indice=4;
			$('.prodotto').fadeTo(0,opacita)
			$('#prodotto'+indice).fadeTo(tempo,1);
			$('#gallery-prodotti').animate({'margin-left':-whDivProdotto*indice},tempo);
		});
		$('#vai5').mouseover(function(){$('img',this).attr('src','img/p-porto-cervo-on.gif');});
		$('#vai5').mouseout(function(){$('img',this).attr('src','img/p-porto-cervo.gif');});
		$('#vai5').click(function(){
			if(indice==13){$('#freccia-dx').fadeIn();};
			if(indice==0){$('#freccia-sx').fadeIn();};
			indice=5;
			$('.prodotto').fadeTo(0,opacita)
			$('#prodotto'+indice).fadeTo(tempo,1);
			$('#gallery-prodotti').animate({'margin-left':-whDivProdotto*indice},tempo);
		});
		$('#vai6').mouseover(function(){$('img',this).attr('src','img/p-villers-on.gif');});
		$('#vai6').mouseout(function(){$('img',this).attr('src','img/p-villers.gif');});
		$('#vai6').click(function(){
			if(indice==13){$('#freccia-dx').fadeIn();};
			if(indice==0){$('#freccia-sx').fadeIn();};
			indice=6;
			$('.prodotto').fadeTo(0,opacita)
			$('#prodotto'+indice).fadeTo(tempo,1);
			$('#gallery-prodotti').animate({'margin-left':-whDivProdotto*indice},tempo);
		});
		$('#vai7').mouseover(function(){$('img',this).attr('src','img/p-dornoch-on.gif');});
		$('#vai7').mouseout(function(){$('img',this).attr('src','img/p-dornoch.gif');});
		$('#vai7').click(function(){
			if(indice==13){$('#freccia-dx').fadeIn();};
			if(indice==0){$('#freccia-sx').fadeIn();};
			indice=7;
			$('.prodotto').fadeTo(0,opacita)
			$('#prodotto'+indice).fadeTo(tempo,1);
			$('#gallery-prodotti').animate({'margin-left':-whDivProdotto*indice},tempo);
		});
		$('#vai8').mouseover(function(){$('img',this).attr('src','img/p-glastonbury-on.gif');});
		$('#vai8').mouseout(function(){$('img',this).attr('src','img/p-glastonbury.gif');});
		$('#vai8').click(function(){
			if(indice==13){$('#freccia-dx').fadeIn();};
			if(indice==0){$('#freccia-sx').fadeIn();};
			indice=8;
			$('.prodotto').fadeTo(0,opacita)
			$('#prodotto'+indice).fadeTo(tempo,1);
			$('#gallery-prodotti').animate({'margin-left':-whDivProdotto*indice},tempo);
		});
		$('#vai9').mouseover(function(){$('img',this).attr('src','img/p-brighton-on.gif');});
		$('#vai9').mouseout(function(){$('img',this).attr('src','img/p-brighton.gif');});
		$('#vai9').click(function(){
			if(indice==13){$('#freccia-dx').fadeIn();};
			if(indice==0){$('#freccia-sx').fadeIn();};
			indice=9;
			$('.prodotto').fadeTo(0,opacita)
			$('#prodotto'+indice).fadeTo(tempo,1);
			$('#gallery-prodotti').animate({'margin-left':-whDivProdotto*indice},tempo);
		});
		$('#vai10').mouseover(function(){$('img',this).attr('src','img/p-biarrits-on.gif');});
		$('#vai10').mouseout(function(){$('img',this).attr('src','img/p-biarrits.gif');});
		$('#vai10').click(function(){
			if(indice==13){$('#freccia-dx').fadeIn();};
			if(indice==0){$('#freccia-sx').fadeIn();};
			indice=10;
			$('.prodotto').fadeTo(0,opacita)
			$('#prodotto'+indice).fadeTo(tempo,1);
			$('#gallery-prodotti').animate({'margin-left':-whDivProdotto*indice},tempo);
		});
		$('#vai11').mouseover(function(){$('img',this).attr('src','img/p-antibes-on.gif');});
		$('#vai11').mouseout(function(){$('img',this).attr('src','img/p-antibes.gif');});
		$('#vai11').click(function(){
			if(indice==13){$('#freccia-dx').fadeIn();};
			if(indice==0){$('#freccia-sx').fadeIn();};
			indice=11;
			$('.prodotto').fadeTo(0,opacita)
			$('#prodotto'+indice).fadeTo(tempo,1);
			$('#gallery-prodotti').animate({'margin-left':-whDivProdotto*indice},tempo);
		});
		$('#vai12').mouseover(function(){$('img',this).attr('src','img/p-saint-andrews-on.gif');});
		$('#vai12').mouseout(function(){$('img',this).attr('src','img/p-saint-andrews.gif');});
		$('#vai12').click(function(){
			if(indice==13){$('#freccia-dx').fadeIn();};
			if(indice==0){$('#freccia-sx').fadeIn();};
			indice=12;
			$('.prodotto').fadeTo(0,opacita)
			$('#prodotto'+indice).fadeTo(tempo,1);
			$('#gallery-prodotti').animate({'margin-left':-whDivProdotto*indice},tempo);
		});
		$('#vai13').mouseover(function(){$('img',this).attr('src','img/p-migjorn-on.gif');});
		$('#vai13').mouseout(function(){$('img',this).attr('src','img/p-migjorn.gif');});
		$('#vai13').click(function(){
			if(indice==0){$('#freccia-sx').fadeIn();};
			indice=13;
			$('.prodotto').fadeTo(0,opacita)
			$('#prodotto'+indice).fadeTo(tempo,1);
			$('#gallery-prodotti').animate({'margin-left':-whDivProdotto*indice},tempo);
			$('#freccia-dx').fadeOut();
		});
		

	};//#coleccion
	
	//in base all'id del body
	if ($('#contacto').length > 0){
		
		//ridimensionamento #container
		ridimensionaContainer();
		
	};//#nosotros

});

//quando ridimensiono la finestra del browser
$(window).resize(function(){
						  
	if ($('#index').length > 0){
		ridimensionaImg();
	};
	
	if ($('#nosotros').length > 0){
		ridimensionaContainer();
	};
	
	if ($('#coleccion').length > 0){
		ridimensionaContainer();
	};
	
	if ($('#contacto').length > 0){
		ridimensionaContainer();
	};
	
});
