$(document).ready(function(){	  
  $('#conteudo, #conteudo2').corner('round 5px');
  $('h1').css('background-image', 'url("./img/h1/'+$('body').attr('id')+'.png")');
  $('#rodape #social a').each(function(i) { 
	$(this).css('background-position', -16*i+'px 0').hover(
		function() { $(this).css('background-position', -16*i+'px -16px'); },
		function() { $(this).css('background-position', -16*i+'px 0'); }
	);
  });
}); 
