// JavaScript Document

$(document).ready(function(){
	$("#logo").fadeIn(2000);

	
	$("#fanosa").mouseenter(function(){
  		$(".fanosamenu").animate({'marginTop':'0px'}, 150);
	});
	$("#fanosa").mouseleave(function(){
  		$(".fanosamenu").animate({'marginTop':'7px'}, 150);
	});

	$("#productos").mouseenter(function(){
  		$(".productosmenu").animate({'marginTop':'0px'}, 150);
	});
	$("#productos").mouseleave(function(){
  		$(".productosmenu").animate({'marginTop':'7px'}, 150);
	});

	$("#contacto").mouseenter(function(){
  		$(".contactomenu").animate({'marginTop':'0px'}, 150);
	});
	$("#contacto").mouseleave(function(){
  		$(".contactomenu").animate({'marginTop':'7px'}, 150);
	});


    $('#sabiasque').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});

    $('#bgrotativo').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});

	$("#btnnext").click(function(){
  		$("#contenidowrapper01").animate({'marginLeft':'-=700px'}, 500);
	});

	$("#btnback").click(function(){
  		$("#contenidowrapper01").animate({'marginLeft':'+=700px'}, 500);
	});


	$(".productos_btn").mouseenter(function(){
  		$(this).animate({'top':'-=3px'}, 150);
	});
	$(".productos_btn").mouseleave(function(){
  		$(this).animate({'top':'+=3px'}, 150);
	});

//ANIMACION DE BOTONES DE PRODUCTOS BACK Y NEXT

	$("#productos_btn_info").click(function(){
  		$(".productos_contenido_wrapper").animate({'left':'-600px'}, 500);
	});

	$("#productos_btn_info_sinlanding").click(function(){
  		$(".productos_contenido_wrapper").animate({'left':'0px'}, 500);
	});

	$(".productos_btn_next").click(function(){
  		$(".productos_contenido_wrapper").animate({'left':'-=600px'}, 500);
	});


	$(".productos_btn_back").click(function(){
  		$(".productos_contenido_wrapper").animate({'left':'+=600px'}, 500);
	});

	$("#test01wu").mouseenter(function(){
		$("#contenido_right").fadeOut(200);
	});


});

$(function plecadesliza(){
  $("#plecabg").animate({"top": "400px"}, 8000).animate({"top": "0px"}, 8000, plecadesliza);
});


function popup (pagina) {
var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=670, height=362, top=85, left=140";
window.open(pagina,"",opciones);
}

function formulario (pagina) {
var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=720, height=380, top=85, left=140";
window.open(pagina,"",opciones);
}



//ANIMACIONES EN SECCION DE CONTACTO//

$().ready(function(){

$("#mapacss").click(
function() {
$("#contenido_wrapper").animate({'left':'0px'},'slow');
});

$("#mapaflash").click(
function() {
$("#contenido_wrapper").animate({'left':'-700px'},'slow');
});

});



var n = 18; // number of hidden layers
function datos(a){	
for(var i=1;i<=18;i++){
document.getElementById('t'+i).style.display = 'none';
}
if (document.getElementById('t'+a).style.display == 'inline'){
	document.getElementById('t'+a).style.display = 'none';
	} else {
document.getElementById('t'+a).style.display = 'inline';}
}



