// JavaScript Document
jQuery.noConflict();
jQuery(function(){
		   jQuery(".btn_comment").hover(function(){
											jQuery(this).next(".comment_cont").fadeIn();
											},function(){
											jQuery(this).next(".comment_cont").fadeOut();
											});
		   });
