﻿    //Slider's
    
    var sliders =
    {
        slider :
        {
            init : function($obj){
            
                //Avança
                $obj.children('.next').click(function(){
                    if (!$obj.find('ul').is(':animated')){
                        $obj.find('ul').animate({
                            marginLeft: '-=' + $obj.find('li').outerWidth(true)
                        }, 'slow', 'easeInOutBack', function(){
                            $(this).css('margin-left', 0);
                            $(this).children('li').first().appendTo($(this));
                        });
                    }
                }); 
                
                //Retrocede
                $obj.children('.prev').click(function(){
                    if (!$obj.find('ul').is(':animated')){
                        $obj.find('ul').children('li').last().prependTo($obj.find('ul'));
                        $obj.find('ul').css('margin-left', -$obj.find('ul').children('li').outerWidth(true));
                        $obj.find('ul').animate({
                                marginLeft: '+=' + $obj.find('li').outerWidth(true)
                            }, 'slow', 'easeInOutBack', function(){
                        }); 
                    }   
                });  
            }
        }
    }
