jQuery(document).ready(function($) {
  
	$('#esp-right').bind('click',function(){
	  moveLeft();
	});
	
	$('#esp-left').bind('click',function(){
	  moveRight();
	});
	
	function moveRight() {
    $left = $('#ul-especiais').position().left;
    
    if($left != 0){
      $('#ul-especiais').animate({ 'left': '+=221' },1000);
    }
    
    $left = $('#ul-especiais').position().left * -1;
  }
  
  function moveLeft() {
    $left = $('#ul-especiais').position().left * -1;
    
    $width = $('#ul-especiais').width();
    $max = $width - 665;
    
    if($left > $max){
      
    } else {
      $('#ul-especiais').animate({ 'left': '-=221' },1000)
    }
  }
	
	$('.depoimento-video').live('click',function(e){
	  var postId = $(this).attr('id');
	  
	  $('#video').load("http://tal.tv/depoimentos/",{id:postId});
	  
	  e.preventDefault();
	})
	
	$('.patrocinador-video').live('click',function(e){
	  var postId = $(this).attr('id');
	  
	  $('#video-player').load("http://tal.tv/patrocinadores-video/",{id:postId});
	  
	  e.preventDefault();
	})
	
});
