$(document).ready(function(){
	
	$(".post_menu a.comment_button").mouseover(function(){
		$("img", this).attr("src", "http://blog.dzhus.com/wp-content/themes/retheme/images/comment_button_active.png");
	}).mouseout(function(){
		$("img", this).attr("src", "http://blog.dzhus.com/wp-content/themes/retheme/images/comment_button.png");
	});
	
	
	$(".post_menu a.read_button").mouseover(function(){
		$("img", this).attr("src", "http://blog.dzhus.com/wp-content/themes/retheme/images/read_button_active.png");
	}).mouseout(function(){
		$("img", this).attr("src", "http://blog.dzhus.com/wp-content/themes/retheme/images/read_button.png");
	});
	
});