$(function(){
	$(".thumb").hover(function(){ $($(this).attr('rel')).show('slow'); }, function(){ $($(this).attr('rel')).hide('slow'); });
	var triggers = $("#sign_up").overlay({ mask: { color: '#000', loadSpeed: 300, opacity: 0.8 },	closeOnClick: false, onBeforeLoad: function() {
		var wrap = this.getOverlay().find(".aweberForm");
		wrap.load(this.getTrigger().attr("href"));
	}, onLoad: function() {
		$('#reset').click(function(e) {
			triggers.overlay().close();
	   });
	}
	});
});
