jQuery(document).ready(function(){
            jQuery("a").mouseover(function(){
                jQuery(this).find(".textPlaceholder").show();
            }).mouseout(function(){
                jQuery(this).find(".textPlaceholder").hide();
            });
        });
