$(document).ready(function() {
   $('a.Hover').hover(function() {
	   id = this.id.replace(/^Ply_/,'');
	   file = '/css/'+$('span#Img_'+id).html();
	   $('div#Info p').html($('span#Info_'+id).html());
	   $('div#Img').css("backgroundImage", "url("+file+")" );
   });
   $('.mail').spam();
});
(function($) {
	$.fn.spam = function() {
		this.html(this.html().replace(/\[at\]/g, '@').replace(/\[dot\]/g, '.'));
		}
	})(jQuery);
