﻿/// <reference path="jquery-1.3.2.min.js" />
$(document).ready(function() {
	var href = "";
	$("a[rel]").overlay({
		expose: "#1A8A95", //blue
		effect: "apple",
		onBeforeLoad: function() {
			var wrap = this.getContent().find(".contentWrap");
			$(wrap).empty();
			href = this.getTrigger().attr("href");
			wrap.load(href);
		},
		onLoad: function(){ addPrintLink(); }
	});
	
	$(".printme a").live("click", function(){
		window.open(href);
		return false;
	});
});

function addPrintLink(){
	$(".contact").prepend("<tr><td class='printme'><a href='#'>print this profile</a></td></tr>");
}
