// JavaScript Document

jQuery( function($) {

	var pname = $("div.prow > div.pcol > div.pname");
	pname.hide();

	$("div.prow > div.pcol").hover( 
		function(e) {
			$(this).children("div.pname").fadeIn("fast");
			e.stopPropagation();
		},
		function(e) {
			$(this).children("div.pname").fadeOut("fast");
			e.stopPropagation();
		}
	);
	

});