
$(document).ready(function() {	
	$(".boxstext").hide();
	$(".overbox").mouseenter(function(){
     $(this).find(".boxstext").stop(true, true).fadeIn();
    }).mouseleave(function(){
     $(this).find(".boxstext").stop(true, true).fadeOut();
    });
	
});
