$(document).ready(function(){
	$(".neg").click(function(){
		$("#solImplanta").hide("slow",function(){
			$("#solContact").hide("slow",function(){
				$("#solNegocios").show("slow",function(){
					$.scrollTo('#solNegocios', 900);
					$("#produto").val(4);
				});
			});	
		});
	});
	
	$(".imp").click(function(){
		$("#solNegocios").hide("slow",function(){
			$("#solContact").hide("slow",function(){
				$("#solImplanta").show("slow", function(){
					$.scrollTo('#solImplanta', 900);
					$("#produto").val(4);
				});		
			});	
		});
	});
	
	$(".sup").click(function(){
		$("#solNegocios").hide("slow",function(){
			$("#solImplanta").hide("slow", function(){
				$("#solContact").show("slow",function(){
					$.scrollTo('#solContact', 900);
					$("#produto").val(4);
				});		
			});	
		});
	});
	
});