// Javascript Portfolio Slider

$(function(){
        
        $('.prev').click(function(){

            $('.conveyor').css({
                'marginLeft' : '-1010px'
            });
            
            $('.conveyor').children(':last')
                .prependTo('.conveyor');
                
            $('.conveyor').animate({
                'marginLeft' : '0px'
            });
            
            return false;
        });
        
        $('.next').click(function(){

            $('.conveyor').animate({
                'marginLeft' : '-1010px'
            },function(){
                $(this).children(':first')
                    .appendTo(this);
                    
                $(this).css({
                    'marginLeft' : '0px'
                });
            });
            return false;
        });
        
});
    
$(document).ready(function(){
			
        $('.conveyor').children().css({
            'float' : 'left'
        });
        
        
});