$(document).ready( function(){
    var visibleCount = 4;
    var flag = false;
    
    $('.product_next').click( function(){
        if ( !flag )
        {
            flag = true;
            var delta = ( parseInt($(this).siblings('.product_slide').width())-Math.abs(parseInt($(this).siblings('.product_slide').css('left')))-parseInt($(this).parent('div').width()) );
            if ( delta > 10 )
            {
                var width = $(this).parent('.product_container').children('.product_slide').children('table').children('tbody').children('tr').children('td:eq(1)').width(); 
                $(this).parent('.product_container').children('.product_slide').animate({'left' : '-='+width+'px'}, 800);
            }
            flag = false;
        }
    } );
    
    $('.product_prev').click( function(){
        if ( !flag )
        {
            flag = true;
            if ( parseInt($(this).siblings('.product_slide').css('left')) < -10 )
            {
                var width = $(this).parent('.product_container').children('.product_slide').children('table').children('tbody').children('tr').children('td:eq(1)').width();
                $(this).parent('.product_container').children('.product_slide').animate({'left' : '+='+width+'px'}, 800);
            }
            flag = false;
        }
    } );
    
} );
