<!--// <![CDATA[

$(document).ready(function()
{
	$(".menu-ideas li").hover(
	function() {
		$(this).addClass('active-idea2');
	},
	function() {
		$(this).removeClass('active-idea2');
	});
	
	$(".bloque-de-imagen").hover(
	function() {
		$(this).find('.bloque-seleccion').addClass('activo-imagen');
		$(this).find('.bloque-seleccion').find('.galeria-texto').show();
	},
	function() {
		$(this).find('.bloque-seleccion').removeClass('activo-imagen');
		$(this).find('.bloque-seleccion').find('.galeria-texto').hide();
	});
	
	$('.select-estilo').change(function() {
	var opcion = $(this).find(":selected").text();
	$(this).parent().find('.span-estilo').text(opcion);
	} );
	
	$("ul.ul-menu-secundario li").hover(
      function () {
      	if (!$(this).children('ul').is(':animated'))
      	{
        	$(this).children('ul').slideDown()
        }
      }, 
      function () {
        $(this).children('ul').slideUp()
      }
	);
 });

// ]]>-->