/**
 * @author jonas@startsiden.no
 */
$().ready(function(){
    var speed = 200;
    // show/hide extended product info
    $(".extinfo").css("opacity", "0");
    $(".extended li h3 a").each(function(){
        $(this).hover(function(){
            $($($(this).parent()).parent()).children("div").removeClass("none").addClass("block").animate({
                opacity: "1",
                top: "-110px"
            }, speed)
            .hover(function(){
                $(this).stop();
            }, function(){
                $(this).animate({
                    top: "-125px",
                    opacity: "0"
                }, speed, function(){
                    $(this).css("display", "none");
                })
                
            })
        }, function(){
            $($($(this).parent()).parent()).children("div").animate({
                top: "-125px",
                opacity: "0"
            }, speed, function(){
                $(this).css("display", "none");
            })
            
        })
    })
    
});
