$(document).ready(function(){
	
	$('#container_conteudos').ifixpng();

	$('#sm_01').mouseover(function(){
		$('.img_servico').hide();
		$('#01').show();
	});

	$('#sm_02').mouseover(function(){
		$('.img_servico').hide();
		$('#02').show();
	});

	$('#sm_03').mouseover(function(){
		$('.img_servico').hide();
		$('#03').show();
	});

	$('#sm_04').mouseover(function(){
		$('.img_servico').hide();
		$('#04').show();
	});

	$('#sm_05').mouseover(function(){
		$('.img_servico').hide();
		$('#05').show();
	});

	$('#sm_06').mouseover(function(){
		$('.img_servico').hide();
		$('#06').show();
	});

	$('#sm_07').mouseover(function(){
		$('.img_servico').hide();
		$('#07').show();
	});

	$('#sm_08').mouseover(function(){
		$('.img_servico').hide();
		$('#08').show();
	});

});