$(document).ready(function () 
{
	
	hoverFormRow();
});
function hoverFormRow()
{
	$(".formSkin>fieldset>p").hover(
		function () {
			if($(this).find("label:first").is(":visible"))
			{
				if($(this).find("span").length)
				{
					$(this).append('<div class="fieldDetails">' + $(this).find("span").html() + '</div>')
					$(this).find("div.fieldDetails").slideDown("fast");
				}
			}
		}, 
		function () {
			$("div.fieldDetails").remove();
		}
	);
	
}

