var paginacao = "<a href='javascript:void(0);' id='anterior' title='Anterior'><img src='img/anterior.gif' alt='Anterior' /></a><span id='nav'>&nbsp;</span><a href='javascript:void(0);' id='proximo' title='Próximo'><img src='img/proximo.gif' alt='Próximo'' /></a>";

function chamaobjeto(){
	$("ul.lista-produtos").html("<li id='objeto'><a href='javascript:void(0)' onClick='chamaobjeto()' title='Objeto'>Objeto</a></li><li id='moveis'><a href='javascript:void(0)' onClick='chamamoveis()' title='Móveis'>Móveis</a></li><li>Almofadas</li><li id='parede'><a href='javascript:void(0)' onClick='chamaparede()' title='Parede'>Parede</a></li><li>Papelaria</li><li>Arte</li>");
	$("#sobre").fadeOut("slow");
	$("ul.lista-produtos").animate({top:'130px'},1000);
	$("#objeto").css("margin-bottom","100px");
	$(".bloco, .categorias-produtos").html('<img src="img/loading.gif" class="loading" />');
	$(".bloco").hide().fadeIn("slow").load('include/produtos-lista.html #objeto');
	$(".categorias-produtos").hide().fadeIn("slow").load('include/produtos-lista.html #objeto-categorias');
	$(".desc").hide();
}

$(document).ready(function(){
	$("#paginas .pagina2").click(function(){
		$(this).hide();
		$("#paginas .pagina1").fadeIn("slow");
		$(".bloco, .categorias-produtos").html('<img src="img/loading.gif" class="loading" />');
		$(".bloco").hide().fadeIn("slow").load('include/produtos-lista2.html #moveis');
		$(".categorias-produtos").hide().fadeIn("slow").load('include/produtos-lista2.html #moveis-categorias');
	})
})

function chamamobiles(){
	$(".bloco").html('<img src="img/loading.gif" class="loading" />');
	$(".bloco").hide().fadeIn("slow").load('include/produtos-mobiles.html');
	$(".desc").fadeIn("slow");
	$(".desc span#titulo").html("Móbile Silver");
	$(".desc span#desc").html("<br />");
	$(".desc span#paginacao").hide().fadeIn("slow").html(paginacao);
}