var $j = jQuery.noConflict();
$j(document).ready(function() {

$j("#wrapper .featured_image").mouseenter(function(){
	$j(this).children(".title").fadeIn('200');
});
$j("#wrapper .featured_image").mouseleave(function(){
	$j(this).children(".title").fadeOut('200');
});

$j("#submit").click(function(){
	$j("#submit-comment").fadeIn('200');
});
$j("#submit-comment").click(function(){
	$j(this).fadeOut('200');
});


});
