﻿$(document).ready(function() {
	
	$("#icons a").mouseover(function()
		{
			var socialName = $(this).attr("title");
			$("#iconName").html(socialName);
			return true;
		}
	);
	$("#icons a").mouseleave(function()
		{
			$("#iconName").html("&nbsp;");
			return true;
		}
	);
	
});
