$(document).ready(function(){
						   
	// Menu
   	$('#menu li:has(ul)').hover( 
      function(e) 
      { $(this).find('ul').fadeIn(); }, 
      function(e) 
      { $(this).find('ul').fadeOut('fast'); } 
   	);
	
	$('.submenu').css('opacity','0.9');
	$("#productos-bg li a").prepend("<em><\/em>");
	
	// Opacity img
	$(function() {
		$("#productos-list img, #miniaturas img, #productos_vertical img, #productos-bg img").css('opacity','0.70');
		// on mouse over
		$("#productos-list a, #miniaturas a, #productos_vertical li, #productos-bg li").hover(function () {
			$(this).find('img').stop().animate({opacity: 1}, "slow");
		},
		// on mouse out
		function () {
			$(this).find('img').stop().animate({opacity: 0.70}, "slow");
		});
	});
});


// Carouseles
$(document).ready(function() {
	//$("#cuit_optica").mask("99-99999999-9");
	$('#productos_vertical').jcarousel({scroll: 4, vertical: true, easing: 'easeInOutBack', animation: 1500});
	$('#videos_vertical').jcarousel({scroll: 3, vertical: true, easing: 'easeInOutBack', animation: 1500});
	$('#videos_horizontal').jcarousel({scroll: 3, vertical: false, easing: 'easeInOutBack', animation: 1500});
	$('#paginador_vertical').jcarousel({scroll: 4, vertical: true, easing: 'easeInOutBack', animation: 1500});
	$('#otros-colores ul').jcarousel({scroll: 3, vertical: true, easing: 'easeInOutBack', animation: 1500});
});

// COLORBOX
$(document).ready(function(){
	$('.colorbox').colorbox({transition:'fade', opacity:0.85, maxWidth:'95%', maxHeight:'80%', initialWidth: '200px', initialHeight: '200px',  current: "Imagen {current} de {total}", previous:"Anterior", next:"Siguiente", close:"Cerrar X"});
});

// INPUTS
function eFocus(field){if (field.value == field.defaultValue){field.value ='';}}
function eBlur(field){if (field.value == ''){field.value = field.defaultValue;}}

// REFRESCA EL CAPTCHA;
function captchaRefresh(){
	rand = $.random(99999);
	$('#captcha_container').attr('src', 'captcha.php?'+rand);
}
function captchaRefresh_bis(){
	rand = $.random(99999);
	$('#captcha_container_bis').attr('src', 'captcha.php?'+rand);
}

// BUSQUEDA AVANZADA

$(document).ready(function(){
	//$("#desplegable-detalle h3:first").addClass("active");
	$("#busqueda-avanzada ul").hide();
	$("#busqueda-avanzada h3").click(function(){
	$(this).next("ul").slideToggle("normal")
	//.siblings("ul:visible").slideUp("fast");
	$(this).toggleClass("active");
	//$(this).siblings("h3").removeClass("active");
	});
});

