﻿
$(function servicesExpand(){$('.popup').hover(function(){var element=$(this);element.append($('<span id="services">'+element.attr("title")+'</span>'));element.removeAttr("title");},function(){var element=$(this);element.attr("title",$("#services").text());element.find("span").remove();});});