﻿
$(document).ready(function(){
            $("a").mouseover(function(){
                $(this).find(".textPlaceholder").show();
            }).mouseout(function(){
                $(this).find(".textPlaceholder").hide();
            });
        });
	/* http://www.uie.com/articles/galleries_reprint */
