This solution works, but I am looking for a more professional approach in order to adhere to the principle of "don't repeat yourself."
$("document").ready(function(){
$(".child").each(function(index){
$(this).click(function(){
$(".hire-me").eq(index).fadeIn("slow");
});
});
});
I would appreciate a shorter implementation method.