// JavaScript Document
// general.js
// Andy Rova
// andy@rovaconsulting.com
// last revised Nov. 20, 2007
//-----------------------------------------------------------------------------

$(document).ready(function(){
	$("a[rel='external']").addClass("externalLink").click(
			function() { 
				window.open($(this).attr("href")); return false;  // make rel="external" links open in new windows
			});
	// set up legal disclaimer popup:
	$("#footerContactInfo a").attr("href", "legalDisclaimer.html?KeepThis=true&TB_iframe=true&height=252&width=446"); 
	$("#registerButton").attr("href", "VIPForm.html?KeepThis=true&TB_iframe=true&height=589&width=419");
});
