(function( $ ){
  $.fn.mailcrypt = function( options ) {
    return this.each(function() {
		var at = '@';
		var dot = '.';
		$(':first-child',this).replaceWith(at);
		$(':nth-child(1)',this).replaceWith(dot);
		email = $(this).html();
		$(this).attr('href', 'mailto:'+email);
    });
  };
})( jQuery );

$(document).ready(function() {
	$('a.mailcrypt').mailcrypt();
	$('#player').flash({ src: 'xspf_player/xspf_player.swf?playlist_url=xspf_player/playlist.xspf?xn_auth=no&amp;autoload=true&amp;autoplay=false', width: 314, height: 314 });
});
