$(function(){
	$('form.lng').jqTransform({imgPath:'img/'});
});

jQuery(function(){
	jQuery('ul#jsddm').superfish();
});

$(document).ready(function(){
	/*$("#featured").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
	
	$("#featured").hover(  
		function() {  
			$("#featured").tabs("rotate",0,true);  
		},  
		function() {  
			$("#featured").tabs("rotate",5000,true);  
		}  
	);*/
	
	$("#featured").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000);
			
	$("#featured").click(  
		function() {  
		$("#featured").tabs("rotate",0);  
			},  
		function() {  
		$("#featured").tabs("rotate",5000);  
			}  
	);

	$(".aereo").css("display","block");
	
	$(".maritimo").css("display","none");

	$("#aereo").click(function(){
		$("#aereo").addClass("hover");
		$("#maritimo").removeClass("hover");
		$(".maritimo").hide("fast");
		$(".aereo").show("fast");
	});

	$("#maritimo").click(function(){
		$("#aereo").removeClass("hover");
		$("#maritimo").addClass("hover");
		$(".aereo").hide("fast");
		$(".maritimo").show("fast");
	});
	
	$('#select').change(function() {
		
	   $('#formdistancia').hide();
	   $('#formhorarios').hide();
	   $('#formcontainers').hide();
	   $('#formsites').hide();
	   $('#formtemperaturas').hide();
	   $('#formunidades-medidas').hide();
	   $('#form' + $(this).find('option:selected').attr('id')).show();
	  
	   /*UNIDADES DE MEDIDA*/
	    $('#formum-distancia').hide();
	    $('#formum-volume').hide();
		
		$('#select-medidas').change(function() {
		   $('#formum-distancia').hide();
		   $('#formum-volume').hide();
		   $('#formum-massa').hide();
		   $('#form' + $(this).find('option:selected').attr('id')).show();
		   
		});
	   /*UNIDADES DE MEDIDA*/
	   
	   /*HORÁRIOS*/
	    $('#formeniwetok2').hide();
	    $('#formhawaii2').hide();
	    $('#formpacif2').hide();
	    $('#formcenter2').hide();
		$('#formatl2').hide();
		$('#formmid2').hide();
		$('#formrome2').hide();
		$('#formmsw2').hide();
		$('#formdel2').hide();
		$('#formkok2').hide();	
		$('#formtky2').hide();		
		$('#formmag2').hide();		
		$('#form_GMT2').hide();
		$('#formsam2').hide();
		$('#formalaska2').hide();
		$('#formmount2').hide();
		$('#formeast2').hide();			
		$('#formbra2').hide();	
		$('#formazo2').hide();		
		$('#formisrael2').hide();		
		$('#formbaku2').hide();
		$('#formdh2').hide();
		$('#formho2').hide();
		$('#formsdn2').hide();
		$('#formwll2').hide();						
				
		
		$('#select-horarios').change(function() {
		$('#formeniwetok2').hide();
		$('#formbrasil').hide();
		$('#formhawaii2').hide();
		$('#formpacif2').hide();
		$('#formcenter2').hide();
		$('#formatl2').hide();
		$('#formmid2').hide();
		$('#formrome2').hide();		
		$('#formmsw2').hide();	
		$('#formdel2').hide();
		$('#formkok2').hide();		
		$('#formtky2').hide();
		$('#formmag2').hide();		
		$('#form_GMT2').hide();										
		$('#formsam2').hide();
		$('#formalaska2').hide();
		$('#formmount2').hide();
		$('#formeast2').hide();						
		$('#formbra2').hide();	
		$('#formazo2').hide();		
		$('#formisrael2').hide();		
		$('#formbaku2').hide();
		$('#formdh2').hide();
		$('#formho2').hide();
		$('#formsdn2').hide();
		$('#formwll2').hide();										
		
				
		   $('#form' + $(this).find('option:selected').attr('id')).show();
		});
	   /*HORÁRIOS*/
	  
	   /*CONTAINERS*/
		$('#select-aereo').hide();
		
		$("#r-aereo").click(function(){
			$(".formmaritimo").hide("fast");
			$("#select-maritimo").hide("fast");
			$("#select-aereo").show("fast");
		});
		$("#r-maritimo").click(function(){
			$(".formaereo").hide("fast");
			$("#select-aereo").hide("fast");
			$("#select-maritimo").show("fast");
		});
	   
	   	/*maritimo*/
		$('.formmaritimo').hide();
		$('#select-maritimo').change(function() {
		   $('.formmaritimo').hide();
		   $('#form' + $(this).find('option:selected').attr('id')).show();
		});
	   	/*maritimo*/

	   	/*aereo*/
		$('.formaereo').hide();
		$('#select-aereo').change(function() {
			$('.formaereo').hide();
		   $('#form' + $(this).find('option:selected').attr('id')).show();
		});
	   	/*aereo*/

	   /*CONTAINERS*/

	});
	
	
});

