$(document).ready(function () {
    $(".conteudoPag .boxDestaque .outrosDestaques .outroDest").hover(function () {
        $(this).find(".conteudo .boxImg").animate({
            'clip': 'rect(0px, 312px, 269px, 10px)',
            top: 0,
            left:-10
        }, { duration: 500, easing: "easeOutQuint" });
        $(this).find(".conteudo").animate({
            width: 312,
            height: 269,
            top:-60            
        }, { duration: 500, easing: "easeOutQuint" });
        $(this).find(".conteudo").css("z-index",3000);
    }, function () {
        $(this).find(".conteudo .boxImg").stop(true,true).animate({
            'clip': 'rect(79px 302px 190px 10px)',
            top: -79,
            left: -10
        }, { duration: 500, easing: "easeOutQuint" });
        $(this).find(".conteudo").stop(true, true).animate({
            width: 292,
            height: 111,
            top: 0
        }, { duration: 500, easing: "easeOutQuint" });
        $(this).find(".conteudo").css("z-index",1000);
    });
    Cufon.replace('.TSB6S', { fontFamily: 'TheSansB6', textShadow: '#C59338 0px -1px 1px' });
});
