$(document).ready(function(){
    
    if($('#head-carousel li').length>2){
        $('#head-carousel').jCarouselLite({
            btnNext: "#head-featured a.left",
            btnPrev: "#head-featured a.right",
            visible: 2
        });
        //$('#head-featured left, #head-featured right').show();
    }
    //alert($('.product-block').find('a.form-button').length);
    $('.product-block').mouseover(function(){$(this).find('a.form-button').show();})
                        .mouseout(function(){$(this).find('a.form-button').hide();})
});
