$(document).ready(function(){

	$("ul li").mouseenter(function(){
		$(this).children("ul").show();
	});
	$("ul li").mouseleave(function(){
		$(this).children("ul").hide();
	});

	$("#marquesina .content").jStockTicker({interval: 30,speed: 2});


   $(".class-frontpage .producto a").mouseenter(function(){
      $(this).children(".attribute-image").show();
   });
   $(".class-frontpage .producto a").mouseleave(function(){
      $(this).children(".attribute-image").hide();
   });


});


function changeTipo(elem){
   $(".attribute-proveedor select").attr("disabled","disabled");
   $(".attribute-cliente select").attr("disabled","disabled");
   if(elem.value == 0) $(".attribute-proveedor select").removeAttr("disabled");
   else $(".attribute-cliente select").removeAttr("disabled");
}

/*
function changeProveedor(elem){
   if(elem.selectedIndex == elem.options.length-1) $(".attribute-otro_proveedor").show();
   else $(".attribute-otro_proveedor").hide();
}
function changeCliente(elem){
   if(elem.selectedIndex == elem.options.length-1) $(".attribute-otro_cliente").show();
   else $(".attribute-otro_cliente").hide();
}
*/

