$(document).ready(function() {
	$('.menu:not(#logo)').css({backgroundPosition:"0 -75px"});
	$('.menu:not(#logo)').mouseenter(function(){
		$(this).stop().animate({height:85,backgroundPosition:"(0 0)"},function(){
			$(this).children('.oculto').show('fast');
		});
		
	});	

	$('.menu:not(#logo)').mouseleave(function(){
		$(this).children('.oculto').hide('fast');
		$(this).stop().animate({height:58,backgroundPosition:"(0 -75px)"});
		
	});	
	
	$(".block").tipTip({defaultPosition:'right',delay:0});
	$(".caja_producto").tipTip({defaultPosition:'top',delay:0});

	$('.imagen_producto').click(function(){

   		var profundo=$(this).css('z-index');
  		var ancho=$(this).attr("ancho");
  		var alto=$(this).attr("alto");
  		
  		var ancho_caja=$(this).parent().width();
  		var alto_caja=$(this).parent().height();
  		var ancho_real=$(this).width();      		
  		var alto_real=$(this).height();
		var x=-((ancho-ancho_real)/2);
		var y=-((alto-alto_real)/2);
		
  		if(profundo==100)
  		{
  			$(this).animate({width:ancho_caja,top:0,left:0},function(){
  				$(this).css({'z-index':0,position:'relative',top:0,left:0})
  				$('#productos').css('overflow','auto');	
  			});
  		}
  		else
  		{	
  			$('#productos').css('overflow','visible');
       		$('.imagen_producto').css({width:ancho_real,top:0,left:0,'z-index':0}); 		
  			$(this).css({'z-index':100,position:'absolute',top:0,left:0});
  			$(this).parent().css({width:ancho_caja,height:alto_caja});      			
  			$(this).animate({width:ancho,top:y,left:x}); 
  		}
	});
	//$('.cajas').css('opacity',.5);
	//$('.cajas p').css('opacity',1);
});

