	//Slider's genéricos
	
	var njk = {
	
		site : {
			
			slider : function($obj) {
				
				var margin = $obj.find('li').outerWidth(true);
				
				//Ação next
				$obj.find('.next').click(function(){
					if (!$obj.find('ul').is(':animated') && $obj.find('li').length > 1) {
						$obj.find('ul').animate({
							marginLeft: -margin
						}, 'slow', function(){
								$(this).children('li:first').appendTo($(this));
								$(this).css('margin-left', 0);
							});
					}
				});
				
				//Ação prev
				$obj.find('.prev').click(function(){
					if (!$obj.find('ul').is(':animated') && $obj.find('li').length > 1) {
						$obj.find('ul').children('li:last').prependTo($obj.find('ul'));
						$obj.find('ul').css('margin-left', -margin);
						$obj.find('ul').animate({
							marginLeft: 0
						}, 'slow', function(){

							});
					}
				});
				
			}			
		
		}
	
	}
