jQuery(function($){
	var $target = $("dl.prod dt a, dl.exibe dt a"),
	    $targetSpanProd = $target.children("span");
		
	$targetSpanProd.css("opacity", 0);
	
    $($target).mouseenter(function(){
		$(this).find('span').stop().animate(
			{ top: 0, opacity: 1 },
			{
				duration: 200,
				easing: 'easeOutBack'
			}
		);
    }).mouseleave(function(){
        $(this).find('span').stop().animate(
			{ top: -30, opacity: 0 },
			{
				duration: 200,
				easing: 'easeInBack'
			}
		);		
    });
	
	
	//-------------------------------------------
	
	var $bt         = $(".expandir img"),
		$categorias = $("#box-subcategoria"),
		alturaBox   = $categorias.height(),
		expandido   = true;
		
	$bt.bind('click', function(){
		if(expandido){
			$categorias.stop().animate({
				height: 30
			});
			$(this).attr("src", "imagens/expandir.gif");
			expandido = false;
		} else {
			$categorias.stop().animate({
				height: alturaBox
			});
			$(this).attr("src", "imagens/comprimir.gif");
			expandido = true;
		}
	});
	
});
