/*
 * Player dos jogos 
 * By Renato S Moreno
 * Oeste Sistemas
 * 01/09/2009
 */



$(document).ready(function() {
	
	// Total de jogos em destaque
	var totalItens = $('.item-img').size();
	
	// Jogo Atual do player
	var atual = 1;
		
	if (totalItens > 1) {	
		
		$('#bt-proximo').css('background', 'url(http://www.superjogosdaweb.com.br/files/img/bt-proximo.jpg) no-repeat');
		
		$('#bt-anterior').click(function () {
			if (atual != 1) {
				
				atual--;
				$('#itens-img').animate({"marginLeft": "+=294px"}, "slow");
				$('#itens-dados').animate({"opacity": "0"}, "slow").animate({"marginLeft": "+=174px"}, "fast").animate({"opacity": "1.0"}, "fast");
				$('#bt-proximo').css('background', 'url(http://www.superjogosdaweb.com.br/files/img/bt-proximo.jpg) no-repeat');
				
				if (atual == 1) {
					$('#bt-anterior').css('background', 'url(http://www.superjogosdaweb.com.br/files/img/bt-anterior-cinza.jpg) no-repeat');
				}	

			}
			else {				
				$('#bt-anteiror').css('background', 'url(http://www.superjogosdaweb.com.br/files/img/bt-anterior-cinza.jpg) no-repeat');
			}
		});
		
		$('#bt-proximo').click(function () {
			if (atual != totalItens) {
				$('#bt-anterior').css('background', 'url(http://www.superjogosdaweb.com.br/files/img/bt-anterior.jpg) no-repeat');				
				atual++;
				$('#itens-img').animate({"marginLeft": "-=294px"}, "slow");
				$('#itens-dados').animate({"opacity": "0"}, "slow").animate({"marginLeft": "-=174px"}, "fast").animate({"opacity": "1.0"}, "fast");
				
				if (atual == totalItens) {
					$('#bt-proximo').css('background', 'url(http://www.superjogosdaweb.com.br/files/img/bt-proximo-cinza.jpg) no-repeat');					
				}
			}
			else {				
				$('#bt-proximo').css('background', 'url(http://www.superjogosdaweb.com.br/files/img/bt-proximo-cinza.jpg) no-repeat');
			}
		});		
		
	}
	
	
});

