$(function(){
    $("#main_navi li a").hover(function(){
    	$(this).stop().animate({
    		//paddingLeft: "2px"
    	}, 40);
    }, function() {
    	$(this).stop().animate({
    		//paddingLeft: 0
    	}, 40);
    });
    
    
    
	$("h1 a").each(function(){
		$(this).html('<img src="/render/h1/' + $(this).text() + '"></img>');
	});
	/**/
	$("h2").each(function(){
		$(this).replaceWith('<h2><img src="/render/h2/' + $(this).text() + '"></img></h2>');
	});

	$("h3").each(function(){
		$(this).replaceWith('<h3><img src="/render/h3/' + $(this).text() + '"></img></h3>');
	});
	$("h5").each(function(){
		$(this).replaceWith('<h5><img src="/render/h1/' + $(this).text() + '"></img></h5>');
	});
	$("h6").each(function(){
		$(this).replaceWith('<h6><img src="/render/h6/' + $(this).text() + '"></img></h6>');
	});
	
});