// JavaScript Document
var $j = jQuery.noConflict();

$j(function(){

	
	$j('.postTitleFrame').hide();
	$j('.homePost').hover(function(){
		$j(this).children('.postTitleFrame').slideDown('slow').show();},
			function(){
			$j(this).children('.postTitleFrame').slideUp('slow').hide;});

}); //End of Document Ready function
