$(document).ready(function(){
    var total = $('#slider ul li').length;
    var width = 325;
    $('#prev').click(function(){
        var pl = $('#slider ul').css('margin-left');

        pl = pl.substring(0, pl.length-2);
        pl = parseInt(pl);
        pl = pl + width;
        if(pl>0) pl = total*width*-1 + width;
        $('#slider ul').animate({
            marginLeft: pl + 'px'
        }, 500);
    });
    $('#next').click(function(){
        var pl = $('#slider ul').css('margin-left');
        
        pl = pl.substring(0, pl.length-2);
        pl = parseInt(pl);
        pl = pl - width;
        if(pl<(total*width*-1 + width)) pl = 0;
        $('#slider ul').animate({
            marginLeft: pl + 'px'
        }, 500); 
    });
});
