var fotowindow;
$(document).ready(function() {
  $('a[rel="external"]').click(function() {
    window.open($(this).attr("href"));
    return false;
  });
  $('a[rel^="gallery["]').click(function() {
    rel = $(this).attr("rel")
    targetimg = rel.substring(8, rel.length-1);
    $('img#'+targetimg).attr({
      src: $(this).attr("href"), 
      alt: $(this).children("img").attr("alt")
    });
    return false;
  });
  $('a[rel="fotos"]').click(function() {
    var xpos=(screen.width - 650)/2;
    var ypos=(screen.height - 600)/2;
    if (fotowindow) fotowindow.close();
    fotowindow = window.open($(this).attr("href"), "", 
                    "scrollbars=yes,status=no,toolbar=no,location=no,directories=no,resizable=no,menubar=no,width=650,height=600," +
                    "screenX="+xpos+",screenY="+ypos+",top="+ypos+",left="+xpos);
    return false;  
  });   
  var path = location.pathname;
  $('#navigation a[href$="' + path + '"]:last').wrapInner('<span></span>');
});
	
function contact(domain, account, name, tld) {
  document.write('<a href=\"' + 'm' + 'ai' + 'l' + 'to' + ':' + account + '@');
  document.write(domain + "." + tld + '" title=\"'+ name +'\">' + account + '@');
  document.write(domain + "." + tld + '</a>');
}