// JavaScript Document
$(document).ready(function(){
	$(".overreadmore .overlay").hover(
		function(e){
			//hoverOnFeat($(this).parents().attr("id"));
			//console.log( $(e.target).parent().parent().parent().children(".readmore") );
			readmore = $(e.target).parent().parent().parent().children(".readmore");
			//$(readmore).animate( { width:"282px" ,height: "37px", top: "160px",opacity: "0.8"}, { duration: 100 } );
			$(readmore).animate( { opacity:'show',top: "140px"}, { duration: 100 } );
			
		},function(e){
			readmore = $(e.target).parent().parent().parent().children(".readmore");
			//$(readmore).animate( { width:"282px" ,height: "37px", top: "190px",opacity: "0"}, { duration: 50 } );
			$(readmore).animate( { opacity:'hide',top: "160px"}, { duration: 100 } );
		}
	)
	

});


