$(function() {
	var fieldsetCount = $('#formElem').children().length;
	var current 	= 0;
	var stepsWidth	= 0;
    var widths 		= new Array();
	$('#steps .step').each(function(i){
        var $step 		= $(this);
		widths[i]  		= stepsWidth;
        stepsWidth	 	+= $step.width();
    });
	$('#steps').width(stepsWidth);
	$('#formElem').children(':first').find(':input:first').focus();	
	$('#box-link-anterior').click(function() {
		var valor = $('#prodCorrente').val();
		if ($('#prodCorrente').val() > 1){
			var resultado  = parseInt(valor) - parseInt(1);
	        $('#prodCorrente').val(resultado);
			
	        $('#steps').stop().animate({marginLeft: '-' + widths[resultado-1] + 'px'},500,function(){
				$('#formElem').children(':nth-child('+ parseInt(resultado) +')').find(':input:first').focus();	
			});
			$('#imagemProduto').attr({src: $('#prodImagem' + resultado).val()});
		}
	});
	$('#box-link-proximo').click(function() {
		var valor = $('#prodCorrente').val();
		var valorTotal = $('#prodTotal').val();
		if ($('#prodCorrente').val() < valorTotal){
			var resultado   = parseInt(valor) + parseInt(1);
	        $('#prodCorrente').val(resultado);
			
	        $('#steps').stop().animate({marginLeft: '-' + widths[resultado-1] + 'px'},500,function(){
				$('#formElem').children(':nth-child('+ parseInt(resultado) +')').find(':input:first').focus();	
			});
			$('#imagemProduto').attr({src: $('#prodImagem' + resultado).val()});
		}
	});
});
function verProduto(id){
	window.location.href="produto.php?produto="+id;
}
function buscarProduto(){
	if ($('#cmbProduto').val() != ""){
		window.location.href="produto.php?produto="+$('#cmbProduto').val();
		return;
	}
	if ($('#cmbSubGrupo').val() != ""){
		window.location.href="listaprodutos.php?subgrupo="+$('#cmbSubGrupo').val();
		return;
	}
	if ($('#cmbGrupo').val() != ""){
		window.location.href="listaprodutos.php?grupo="+$('#cmbGrupo').val();
		return;
	}
//	alert('Escolha um grupo de produto');
}
