﻿$(document).ready(function(){

	$("#hintergrundwebsitenhover a.websitenhover").append("<em>Direkt zu unserer Referenzen-Seite springen.</em>");
	$("#hintergrundwebsitenhover a").hover(function() {
	  $(this).find("em").animate({opacity: "show", top: "15"}, "slow");
	  var hoverText = $(this).attr("title","");
	  
	}, function() {
	  $(this).find("em").animate({opacity: "hide", top: "-50"}, "fast");
	});

});
