$(function() {
    $("div.post img").fadeTo("fast", .75);
    $("div.post img").hover (
      function() {
        $(this).fadeTo("fast", 1.00);
      },
      function() {
        $(this).fadeTo("fast", .75);
      }
    );

  });
function noSpam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain + "?subject=Hello my name is...";
	window.location = locationstring;
}